Browse Source

workaround magic quotes.

Taylor Otwell 13 years ago
parent
commit
4d87565f74
1 changed files with 5 additions and 0 deletions
  1. 5 0
      laravel/laravel.php

+ 5 - 0
laravel/laravel.php

@@ -110,6 +110,11 @@ switch (Request::method())
  */
 unset($input[Request::spoofer]);
 
+if (function_exists('get_magic_quotes_gpc') and get_magic_quotes_gpc())
+{
+	$input = stripslashes($input);
+}
+
 Input::$input = $input;
 
 /**