Browse Source

Merge pull request #1212 from franzliedke/patch-46

Fix CLI mode detection for some shared hosts.
Taylor Otwell 12 years ago
parent
commit
cfc024fe66
2 changed files with 2 additions and 2 deletions
  1. 1 1
      laravel/core.php
  2. 1 1
      laravel/request.php

+ 1 - 1
laravel/core.php

@@ -213,7 +213,7 @@ if (isset($environment))
 |
 */
 
-if (defined('STDIN'))
+if (Request::cli())
 {
 	$console = CLI\Command::options($_SERVER['argv']);
 

+ 1 - 1
laravel/request.php

@@ -196,7 +196,7 @@ class Request {
 	 */
 	public static function cli()
 	{
-		return defined('STDIN');
+		return defined('STDIN') || (substr(PHP_SAPI, 0, 3) == 'cgi' && getenv('TERM'));
 	}
 
 	/**