1st fix of setup

This commit is contained in:
RobbBienert 2024-10-06 00:02:39 +02:00
parent 9084fa00e4
commit 74d6eb4925
3 changed files with 5 additions and 4 deletions

View file

@ -86,6 +86,10 @@ class Year_Links {
}
}
if (!function_exists('get_magic_quotes_gpc')) {
function get_magic_quotes_gpc() { return false; }
}
// kill Magic Quotes
function strip($_data) {
if (!get_magic_quotes_gpc()) return $_data;