From 2c2344c39f3237d2c84d2228569210a0dee2b4ea Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 16 Nov 2011 12:55:45 -0600 Subject: [PATCH] Shorten exception message. --- laravel/input.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/input.php b/laravel/input.php index 4c3682a4..8cc31de7 100644 --- a/laravel/input.php +++ b/laravel/input.php @@ -123,7 +123,7 @@ public static function old($key = null, $default = null) { 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());