Browse Source

Fix bug in core script.

Taylor Otwell 12 years ago
parent
commit
98ea9ac41f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/core.php

+ 1 - 1
laravel/core.php

@@ -185,7 +185,7 @@ else
 |
 */
 
-if ( ! is_null($environment))
+if (isset($environment))
 {
 	Request::set_env($environment);
 }