From 4cd6f5735607d3a528badfc628f8c92a4673ce82 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sun, 25 Nov 2007 16:19:27 +0000 Subject: [PATCH] "fixed problem reported from xxx on the user list: \"Fatal Error class.uiinfolog.inc.php on line 1220\" removed php5 code (self::), to maintain php4.3 compatibility in 1.4" --- infolog/inc/class.uiinfolog.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infolog/inc/class.uiinfolog.inc.php b/infolog/inc/class.uiinfolog.inc.php index d5ef2f6e3c..d47e3db399 100644 --- a/infolog/inc/class.uiinfolog.inc.php +++ b/infolog/inc/class.uiinfolog.inc.php @@ -1250,7 +1250,7 @@ class uiinfolog { if (is_array($val)) { - $arr[$key] = self::array_stripslashes($var); + $arr[$key] = $this->array_stripslashes($var); } else { @@ -1282,7 +1282,7 @@ class uiinfolog { if (get_magic_quotes_gpc()) { - $_POST = self::array_stripslashes($_POST); + $_POST = $this->array_stripslashes($_POST); } $this->bo->config->config_data['link_pathes'] = $this->bo->link_pathes = array(); $this->bo->config->config_data['send_file_ips'] = $this->bo->send_file_ips = array();