added log to aliases. fixed flash data bug.
This commit is contained in:
parent
8ae6b95dcf
commit
49f7145729
|
@ -85,6 +85,7 @@
|
||||||
'Inflector' => 'System\\Inflector',
|
'Inflector' => 'System\\Inflector',
|
||||||
'Input' => 'System\\Input',
|
'Input' => 'System\\Input',
|
||||||
'Lang' => 'System\\Lang',
|
'Lang' => 'System\\Lang',
|
||||||
|
'Log' => 'System\\Log',
|
||||||
'URL' => 'System\\URL',
|
'URL' => 'System\\URL',
|
||||||
'Redirect' => 'System\\Redirect',
|
'Redirect' => 'System\\Redirect',
|
||||||
'Request' => 'System\\Request',
|
'Request' => 'System\\Request',
|
||||||
|
|
|
@ -119,6 +119,11 @@
|
||||||
// ----------------------------------------------------------
|
// ----------------------------------------------------------
|
||||||
System\Filter::call('after', array($response));
|
System\Filter::call('after', array($response));
|
||||||
|
|
||||||
|
// ----------------------------------------------------------
|
||||||
|
// Stringify the response.
|
||||||
|
// ----------------------------------------------------------
|
||||||
|
$response->content = (string) $response->content;
|
||||||
|
|
||||||
// --------------------------------------------------------------
|
// --------------------------------------------------------------
|
||||||
// Close the session.
|
// Close the session.
|
||||||
// --------------------------------------------------------------
|
// --------------------------------------------------------------
|
||||||
|
|
|
@ -204,7 +204,7 @@ public static function regenerate()
|
||||||
public static function close()
|
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());
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue