Browse Source

Shorten exception message.

Taylor Otwell 13 years ago
parent
commit
2c2344c39f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/input.php

+ 1 - 1
laravel/input.php

@@ -123,7 +123,7 @@ class Input {
 	{
 	{
 		if (Config::get('session.driver') == '')
 		if (Config::get('session.driver') == '')
 		{
 		{
-			throw new \UnexpectedValueException('A session driver must be specified in order to access old input.');
+			throw new \UnexpectedValueException('A session driver must be specified to access old input.');
 		}
 		}
 
 
 		$old = IoC::core('session')->get(Input::old_input, array());
 		$old = IoC::core('session')->get(Input::old_input, array());