commit | 8f26dbe1c4b49042d2653956d6278b87351af661 | [log] [tgz] |
---|---|---|
author | Derek Jones <derek.jones@ellislab.com> | Thu Aug 06 14:45:07 2009 +0000 |
committer | Derek Jones <derek.jones@ellislab.com> | Thu Aug 06 14:45:07 2009 +0000 |
tree | 527edb49a8a5b4d6d569ec0c0f6ecb75ebc4ead8 | |
parent | 6d3c2c3511f1c041228da0c13b9d25b716dcf1e1 [diff] [blame] |
let's go ahead and be thorough and explicit if ( ! is_php(5)) becomes if ( ! is_php('5.0.0')) ref: http://codeigniter.com/bug_tracker/bug/8475/
diff --git a/system/codeigniter/CodeIgniter.php b/system/codeigniter/CodeIgniter.php index 1671287..7b945d2 100644 --- a/system/codeigniter/CodeIgniter.php +++ b/system/codeigniter/CodeIgniter.php
@@ -134,7 +134,7 @@ * Note: The Loader class needs to be included first * */ -if ( ! is_php(5)) +if ( ! is_php('5.0.0')) { load_class('Loader', FALSE); require(BASEPATH.'codeigniter/Base4'.EXT);