Browse Source

Tweaking response->render() location.

Taylor Otwell 13 years ago
parent
commit
4d2ecdbff2
2 changed files with 13 additions and 2 deletions
  1. 13 0
      laravel/laravel.php
  2. 0 2
      laravel/response.php

+ 13 - 0
laravel/laravel.php

@@ -124,6 +124,19 @@ Request::$route = Routing\Router::route(Request::method(), $uri);
 
 $response = Request::$route->call();
 
+/*
+|--------------------------------------------------------------------------
+| "Render" The Response
+|--------------------------------------------------------------------------
+|
+| The render method evaluates the content of the response and converts it
+| to a string. This evaluates any views and sub-responses within the
+| content and sets the raw string result as the new response.
+|
+*/
+
+$response->render();
+
 /*
 |--------------------------------------------------------------------------
 | Persist The Session To Storage

+ 0 - 2
laravel/response.php

@@ -184,8 +184,6 @@ class Response {
 	 */
 	public function send()
 	{
-		$this->render();
-
 		$this->cookies();
 
 		$this->foundation->prepare(Request::foundation());