From 98fa907805f24a90d0394e6a15b032c8a5fd8f2a Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 4 Apr 2012 11:30:19 -0500 Subject: [PATCH] Use array_merge_recursive in input class. Signed-off-by: Taylor Otwell --- laravel/input.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/input.php b/laravel/input.php index fe39f5f5..1643a7a0 100644 --- a/laravel/input.php +++ b/laravel/input.php @@ -16,7 +16,7 @@ class Input { */ public static function all() { - $input = array_merge(static::get(), static::query(), static::file()); + $input = array_merge_recursive(static::get(), static::query(), static::file()); unset($input[Request::spoofer]);