Function get_magic_quotes_gpc() is deprecated php7.4. /install/isession.inc. Fixed.
authorJoe Hunt <joe.hunt.consulting@gmail.com>
Wed, 10 Mar 2021 13:20:18 +0000 (14:20 +0100)
committerJoe Hunt <joe.hunt.consulting@gmail.com>
Wed, 10 Mar 2021 13:20:18 +0000 (14:20 +0100)
install/isession.inc

index bd8cce10771ce139a31ebd8311c497726b0c4ab8..bf21f18b4bf0c68f7003b8dcef0d9cb46456dfd0 100644 (file)
@@ -31,7 +31,7 @@ function output_html($text)
 //
 function strip_quotes($data)
 {
-       if(get_magic_quotes_gpc()) {
+       if(version_compare(phpversion(), '5.4', '<') && get_magic_quotes_gpc()) {
                if(is_array($data)) {
                        foreach($data as $k => $v) {
                                $data[$k] = strip_quotes($data[$k]);