commit | a52c775d490fede2a0cb7f54f0dcc5010d7e0465 | [log] [tgz] |
---|---|---|
author | Andrey Andreev <narf@bofh.bg> | Thu Oct 11 10:54:02 2012 +0300 |
committer | Andrey Andreev <narf@bofh.bg> | Thu Oct 11 10:54:02 2012 +0300 |
tree | b79310aaa7f63a697a1c3e9c0ced368a62534e64 | |
parent | 9738668fd6b4078c7eb9df3372e5035791caaaf4 [diff] [blame] |
Replace a few require() uses with require_once() (should fix issue #1872)
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php index 8159b19..f3592ea 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'); /* * ------------------------------------------------------