From 50dc9f8663314c5f90d1269a8ca84ce58c9f9dc1 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 3 May 2012 17:32:33 -0500 Subject: [PATCH] Use regular array_merge on Input::all(). --- laravel/input.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/input.php b/laravel/input.php index 94e14745..9635b793 100644 --- a/laravel/input.php +++ b/laravel/input.php @@ -23,7 +23,7 @@ class Input { */ public static function all() { - $input = array_merge_recursive(static::get(), static::query(), static::file()); + $input = array_merge(static::get(), static::query(), static::file()); unset($input[Request::spoofer]);