summaryrefslogtreecommitdiffstats
path: root/system/core/CodeIgniter.php
diff options
context:
space:
mode:
authorJack Webb-Heller <jack@jackwebbheller.com>2011-12-01 14:37:08 +0100
committerJack Webb-Heller <jack@jackwebbheller.com>2011-12-01 14:37:08 +0100
commiteea0cbebc48d156f74c044f9932602d051eb9401 (patch)
tree194c3f78b39eae86c7d7e101fb72dfe11fc6818c /system/core/CodeIgniter.php
parent796b2b711f22775ef8e2a578bd71d065f9800442 (diff)
Removed `$_SERVER['REMOTE_ADDR']` following feedback
Diffstat (limited to 'system/core/CodeIgniter.php')
-rwxr-xr-xsystem/core/CodeIgniter.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php
index abdbf91d8..97527e5ca 100755
--- a/system/core/CodeIgniter.php
+++ b/system/core/CodeIgniter.php
@@ -109,7 +109,7 @@
if (function_exists("set_time_limit") AND @ini_get("safe_mode") == 0)
{
// Do not override the Time Limit value if running from Command Line
- if(php_sapi_name() != 'cli' && ! empty($_SERVER['REMOTE_ADDR']))
+ if(php_sapi_name() != 'cli')
{
@set_time_limit(300);
}