Browse Source

Added check for application key in session class.

Taylor Otwell 13 years ago
parent
commit
e89fd04ab7
1 changed files with 5 additions and 0 deletions
  1. 5 0
      laravel/session.php

+ 5 - 0
laravel/session.php

@@ -4,6 +4,11 @@ use Closure;
 use Laravel\Session\Drivers\Driver;
 use Laravel\Session\Drivers\Sweeper;
 
+if (Config::$items['application']['key'] === '')
+{
+	throw new \Exception("An application key is required to use sessions.");
+}
+
 class Session {
 
 	/**