Browse Source

added log to aliases. fixed flash data bug.

Taylor Otwell 14 years ago
parent
commit
49f7145729
3 changed files with 8 additions and 2 deletions
  1. 1 0
      application/config/application.php
  2. 5 0
      public/index.php
  3. 2 2
      system/session.php

+ 1 - 0
application/config/application.php

@@ -85,6 +85,7 @@ return array(
 		'Inflector' => 'System\\Inflector',
 		'Input' => 'System\\Input',
 		'Lang' => 'System\\Lang',
+		'Log' => 'System\\Log',
 		'URL' => 'System\\URL',
 		'Redirect' => 'System\\Redirect',
 		'Request' => 'System\\Request',

+ 5 - 0
public/index.php

@@ -119,6 +119,11 @@ else
 // ----------------------------------------------------------
 System\Filter::call('after', array($response));
 
+// ----------------------------------------------------------
+// Stringify the response.
+// ----------------------------------------------------------
+$response->content = (string) $response->content;
+
 // --------------------------------------------------------------
 // Close the session.
 // --------------------------------------------------------------

+ 2 - 2
system/session.php

@@ -204,9 +204,9 @@ class Session {
 	public static function close()
 	{
 		// -----------------------------------------------------
-		// Flash the old input into the session.
+		// Do we need to re-flash the old Input data?
 		// -----------------------------------------------------
-		static::flash('laravel_old_input', Input::get());
+		static::flash('laravel_old_input', Input::get());			
 
 		// -----------------------------------------------------
 		// Age the session flash data.