Browse Source

fixed old input persistence bug.

Taylor Otwell 13 years ago
parent
commit
e44eec106d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      application/filters.php

+ 1 - 1
application/filters.php

@@ -52,7 +52,7 @@ return array(
 	{
 		if (Config::get('session.driver') !== '')
 		{
-			Session::flash(Input::old_input, Input::old());
+			Session::flash(Input::old_input, Input::get());
 		}
 	},