From 8f26dbe1c4b49042d2653956d6278b87351af661 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Thu, 6 Aug 2009 14:45:07 +0000 Subject: 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/ --- system/codeigniter/CodeIgniter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/codeigniter/CodeIgniter.php b/system/codeigniter/CodeIgniter.php index 1671287d0..7b945d249 100644 --- a/system/codeigniter/CodeIgniter.php +++ b/system/codeigniter/CodeIgniter.php @@ -134,7 +134,7 @@ $LANG =& load_class('Language'); * 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); -- cgit v1.2.3-24-g4f1b