Browse Source

use array_map to stripslashes.

Taylor Otwell 13 years ago
parent
commit
02397c6732
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/laravel.php

+ 1 - 1
laravel/laravel.php

@@ -112,7 +112,7 @@ unset($input[Request::spoofer]);
 
 if (function_exists('get_magic_quotes_gpc') and get_magic_quotes_gpc())
 {
-	$input = stripslashes($input);
+	$input = array_map('stripslashes', $input);	
 }
 
 Input::$input = $input;