summaryrefslogtreecommitdiffstats
path: root/system/core/Input.php
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2011-08-13 19:06:57 +0200
committerPhil Sturgeon <email@philsturgeon.co.uk>2011-08-13 19:06:57 +0200
commitc5dccf70ef6d8420b0b858f36318fc4375b0e25d (patch)
tree2eb565ec84a1103d2106e28d589cb68a9279bfb3 /system/core/Input.php
parentadd9ca05c17e5bfd17ded6a65b1a084f7da5d633 (diff)
Get php_sapi_name() == 'cli' involved in the 'is this the command line?' decision.
Diffstat (limited to 'system/core/Input.php')
-rw-r--r--system/core/Input.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Input.php b/system/core/Input.php
index dc7612e64..cfbef942d 100644
--- a/system/core/Input.php
+++ b/system/core/Input.php
@@ -672,7 +672,7 @@ class CI_Input {
*/
public function is_cli_request()
{
- return (bool) defined('STDIN');
+ return (php_sapi_name() == 'cli') or defined('STDIN');
}
}