From 98ea9ac41f26164eef39ee4d36da11658220e117 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 20 Apr 2012 10:54:40 -0500 Subject: [PATCH] Fix bug in core script. --- laravel/core.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/core.php b/laravel/core.php index 5853a049..94a36671 100644 --- a/laravel/core.php +++ b/laravel/core.php @@ -185,7 +185,7 @@ else | */ -if ( ! is_null($environment)) +if (isset($environment)) { Request::set_env($environment); }