Browse Source

adjust how the response is rendered, as well as move input flashing to after filter.

Taylor Otwell 13 years ago
parent
commit
10b9001e13
4 changed files with 13 additions and 17 deletions
  1. 1 1
      application/filters.php
  2. 0 10
      laravel/laravel.php
  3. 6 3
      laravel/routing/controller.php
  4. 6 3
      laravel/routing/route.php

+ 1 - 1
application/filters.php

@@ -50,7 +50,7 @@ return array(
 
 
 	'after' => function($response)
 	'after' => function($response)
 	{
 	{
-		// Do stuff after every request to your application.
+		Input::flash();
 	},
 	},
 
 
 
 

+ 0 - 10
laravel/laravel.php

@@ -213,14 +213,6 @@ else
 	$response = Response::error('404');
 	$response = Response::error('404');
 }
 }
 
 
-/**
- * Stringify the response. We need to force the response to be
- * stringed before closing the session, since the developer may
- * be using the session within their views, so we cannot age
- * the session data until the view is rendered.
- */
-$response->content = $response->render();
-
 /**
 /**
  * Close the session and write the active payload to persistent
  * Close the session and write the active payload to persistent
  * storage. The session cookie will also be written and if the
  * storage. The session cookie will also be written and if the
@@ -229,8 +221,6 @@ $response->content = $response->render();
  */
  */
 if (Config::$items['session']['driver'] !== '')
 if (Config::$items['session']['driver'] !== '')
 {
 {
-	Input::flash();
-
 	IoC::core('session')->save($driver);
 	IoC::core('session')->save($driver);
 }
 }
 
 

+ 6 - 3
laravel/routing/controller.php

@@ -136,14 +136,17 @@ abstract class Controller {
 			}
 			}
 		}
 		}
 
 
-		// The after filter and the framework expects all responses to
-		// be instances of the Response class. If the method did not
-		// return an instsance of Response, we will make on now.
 		if ( ! $response instanceof Response)
 		if ( ! $response instanceof Response)
 		{
 		{
 			$response = new Response($response);
 			$response = new Response($response);
 		}
 		}
 
 
+		// Stringify the response. We need to force the response to be
+		// stringed before closing the session, since the developer may
+		// be using the session within their views, so we cannot age
+		// the session data until the view is rendered.
+		$response->content = $response->render();
+
 		Filter::run($this->filters('after', $method), array($response));
 		Filter::run($this->filters('after', $method), array($response));
 
 
 		return $response;
 		return $response;

+ 6 - 3
laravel/routing/route.php

@@ -111,14 +111,17 @@ class Route {
 			}
 			}
 		}
 		}
 
 
-		// The after filter and the framework expects all responses to
-		// be instances of the Response class. If the route did not
-		// return an instsance of Response, we will make on now.
 		if ( ! $response instanceof Response)
 		if ( ! $response instanceof Response)
 		{
 		{
 			$response = new Response($response);
 			$response = new Response($response);
 		}
 		}
 
 
+		// Stringify the response. We need to force the response to be
+		// stringed before closing the session, since the developer may
+		// be using the session within their views, so we cannot age
+		// the session data until the view is rendered.
+		$response->content = $response->render();
+
 		$filters = array_merge($this->filters('after'), array('after'));
 		$filters = array_merge($this->filters('after'), array('after'));
 
 
 		Filter::run($filters, array($response));
 		Filter::run($filters, array($response));