Browse Source

throw an exception in the request forged method if no session driver has been specified.

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

+ 5 - 0
laravel/request.php

@@ -121,6 +121,11 @@ class Request {
 	 */
 	public static function forged()
 	{
+		if (Config::$items['session']['driver'] == '')
+		{
+			throw new \LogicException("A session driver must be specified to use the CSRF filter.");
+		}
+
 		return Input::get('csrf_token') !== IoC::core('session')->token();
 	}