]> wagnertech.de Git - timetracker.git/commitdiff
Merge branch 'refactoring_test' - this is really a test.
authorNik Okuntseff <support@anuko.com>
Thu, 7 Apr 2016 20:15:46 +0000 (20:15 +0000)
committerNik Okuntseff <support@anuko.com>
Thu, 7 Apr 2016 20:15:46 +0000 (20:15 +0000)
WEB-INF/lib/common.lib.php

index 4fa43777a9d7dcc27deef87e91f7e8756e7270a6..27c43de3f4a2dd745afc755b06f461a965c70cc8 100644 (file)
@@ -158,11 +158,9 @@ function sec_to_time_fmt_hm($sec)
 
 function magic_quotes_off()
 {
-  // if (get_magic_quotes_gpc()) { // This check is now done before calling this function.
-    $_POST = array_map('stripslashes_deep', $_POST);
-    $_GET = array_map('stripslashes_deep', $_GET);
-    $_COOKIE = array_map('stripslashes_deep', $_COOKIE);
-  // }
+  $_POST = array_map('stripslashes_deep', $_POST);
+  $_GET = array_map('stripslashes_deep', $_GET);
+  $_COOKIE = array_map('stripslashes_deep', $_COOKIE);
 }
 
 // check_extension checks whether a required PHP extension is loaded and dies if not so.