077 Magic_quotes dépréciée

This commit is contained in:
Fred Tempez 2020-04-29 13:38:01 +02:00
parent be614eae29
commit 467f03f0ad
2 changed files with 2 additions and 2 deletions

View File

@ -262,7 +262,7 @@ class helper {
$text = filter_var($text, FILTER_SANITIZE_URL); $text = filter_var($text, FILTER_SANITIZE_URL);
break; break;
} }
return get_magic_quotes_gpc() ? stripslashes($text) : $text; return $text;
} }
/** /**

View File

@ -36,7 +36,7 @@ class common {
const THUMBS_WIDTH = 640; const THUMBS_WIDTH = 640;
// Numéro de version // Numéro de version
const ZWII_VERSION = '10.0.076'; const ZWII_VERSION = '10.0.077';
const ZWII_UPDATE_CHANNEL = "v10"; const ZWII_UPDATE_CHANNEL = "v10";
public static $actions = []; public static $actions = [];