From cb1bbc7f3c005c491d8534af3cc069d14e58919d Mon Sep 17 00:00:00 2001 From: camer0n Date: Mon, 18 Sep 2023 13:43:43 -0700 Subject: [PATCH] #5079 PHP 8.2 notice removal --- e107_handlers/e107_class.php | 2 +- e107_handlers/e_parse_class.php | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/e107_handlers/e107_class.php b/e107_handlers/e107_class.php index 37d021b00..4dfb390fd 100644 --- a/e107_handlers/e107_class.php +++ b/e107_handlers/e107_class.php @@ -4769,7 +4769,7 @@ class e107 if (is_array($input)) { - return array_walk($input, array('self', 'filter_request'), $type); + return array_walk($input, array(self::class, 'filter_request'), $type); } diff --git a/e107_handlers/e_parse_class.php b/e107_handlers/e_parse_class.php index 6b39de307..0bc31d03f 100644 --- a/e107_handlers/e_parse_class.php +++ b/e107_handlers/e_parse_class.php @@ -275,6 +275,8 @@ class e_parse private $blockTags = array(); private $scriptAccess = false; // nobody. + private $replaceVars; + private $replaceUnset; /** * Constructor - keep it public for backward compatibility