Browse Source

Check for CLI before starting session.

Signed-off-by: Taylor Otwell <taylorotwell@gmail.com>
Taylor Otwell 13 years ago
parent
commit
76eef23f54
1 changed files with 1 additions and 1 deletions
  1. 1 1
      application/start.php

+ 1 - 1
application/start.php

@@ -108,7 +108,7 @@ date_default_timezone_set(Config::get('application.timezone'));
 |
 */
 
-if (Config::get('session.driver') !== '')
+if ( ! Request::cli() and Config::get('session.driver') !== '')
 {
 	Session::load();
 }