Browse Source

Verify that the session is started before flashing errors.

Taylor Otwell 13 years ago
parent
commit
ef89dd3b31
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/view.php

+ 1 - 1
laravel/view.php

@@ -52,7 +52,7 @@ class View {
 		//
 		// This makes the implementation of the Post/Redirect/Get pattern very
 		// convenient since each view can assume it has a message container.
-		if (Config::$items['session']['driver'] !== '')
+		if (Config::$items['session']['driver'] !== '' and Session::started())
 		{
 			$this->data['errors'] = Session::get('errors', function()
 			{