mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-03-07 09:06:48 +01:00
Removing php.ini
Caused blank page issue for a few people - turning magic quotes off in code is OK
This commit is contained in:
@@ -1 +0,0 @@
|
||||
magic_quotes_gpc = Off
|
||||
@@ -89,7 +89,7 @@ if (isset($_GET['logout'])) {
|
||||
die("Logging you out...");
|
||||
}
|
||||
|
||||
// If magic quotes are still on (attempted to switch off in php.ini)
|
||||
// If magic quotes are still on
|
||||
if (get_magic_quotes_gpc ()) {
|
||||
function stripslashes_deep($value) {
|
||||
$value = is_array($value) ? array_map('stripslashes_deep', $value) : stripslashes($value);
|
||||
|
||||
Reference in New Issue
Block a user