diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-10-11 09:54:02 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-10-11 09:54:02 +0200 |
commit | a52c775d490fede2a0cb7f54f0dcc5010d7e0465 (patch) | |
tree | b79310aaa7f63a697a1c3e9c0ced368a62534e64 /system/core/CodeIgniter.php | |
parent | 9738668fd6b4078c7eb9df3372e5035791caaaf4 (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.php | 2 |
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'); /* * ------------------------------------------------------ |