Shorten exception message.

This commit is contained in:
Taylor Otwell
2011-11-16 12:55:45 -06:00
parent fc8b30159e
commit 2c2344c39f

View File

@@ -123,7 +123,7 @@ class Input {
{
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());