summaryrefslogtreecommitdiffstats
path: root/system/core/CodeIgniter.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-10-11 09:54:02 +0200
committerAndrey Andreev <narf@bofh.bg>2012-10-11 09:54:02 +0200
commita52c775d490fede2a0cb7f54f0dcc5010d7e0465 (patch)
treeb79310aaa7f63a697a1c3e9c0ced368a62534e64 /system/core/CodeIgniter.php
parent9738668fd6b4078c7eb9df3372e5035791caaaf4 (diff)
Replace a few require() uses with require_once() (should fix issue #1872)
Diffstat (limited to 'system/core/CodeIgniter.php')
-rw-r--r--system/core/CodeIgniter.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php
index 8159b19f5..f3592eaf9 100644
--- a/system/core/CodeIgniter.php
+++ b/system/core/CodeIgniter.php
@@ -50,7 +50,7 @@
* Load the global functions
* ------------------------------------------------------
*/
- require(BASEPATH.'core/Common.php');
+ require_once(BASEPATH.'core/Common.php');
/*
* ------------------------------------------------------