summaryrefslogtreecommitdiffstats
path: root/system/core/CodeIgniter.php
diff options
context:
space:
mode:
authorjosephok <josephok@qq.com>2013-11-16 02:33:37 +0100
committerjosephok <josephok@qq.com>2013-11-16 02:33:37 +0100
commit1095d118eb1242091b36c00a2824d0ae7a15c8da (patch)
treea5a67e33abc1c6c5f3c32bdf56f33227b5ff2995 /system/core/CodeIgniter.php
parentafca352b30466ecff38dc3106321851a030af623 (diff)
Update CodeIgniter.php
require(APPPATH.'config/constants.php') should be in front of require(BASEPATH.'core/Common.php') because Common.php uses some constants defined in constants.php.
Diffstat (limited to 'system/core/CodeIgniter.php')
-rw-r--r--system/core/CodeIgniter.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php
index c12116236..1981c2649 100644
--- a/system/core/CodeIgniter.php
+++ b/system/core/CodeIgniter.php
@@ -45,14 +45,7 @@ defined('BASEPATH') OR exit('No direct script access allowed');
*
*/
define('CI_VERSION', '3.0-dev');
-
-/*
- * ------------------------------------------------------
- * Load the global functions
- * ------------------------------------------------------
- */
- require_once(BASEPATH.'core/Common.php');
-
+
/*
* ------------------------------------------------------
* Load the framework constants
@@ -69,6 +62,13 @@ defined('BASEPATH') OR exit('No direct script access allowed');
/*
* ------------------------------------------------------
+ * Load the global functions
+ * ------------------------------------------------------
+ */
+ require_once(BASEPATH.'core/Common.php');
+
+/*
+ * ------------------------------------------------------
* Define a custom error handler so we can log PHP errors
* ------------------------------------------------------
*/
@@ -385,4 +385,4 @@ defined('BASEPATH') OR exit('No direct script access allowed');
$EXT->call_hook('post_system');
/* End of file CodeIgniter.php */
-/* Location: ./system/core/CodeIgniter.php */ \ No newline at end of file
+/* Location: ./system/core/CodeIgniter.php */