Removed `$_SERVER['REMOTE_ADDR']` following feedback
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php
index abdbf91..97527e5 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);
}