Skip to content

Commit

Permalink
#5079 PHP 8.2 notice removal
Browse files Browse the repository at this point in the history
  • Loading branch information
CaMer0n committed Sep 18, 2023
1 parent e904dd9 commit cb1bbc7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion e107_handlers/e107_class.php
Original file line number Diff line number Diff line change
Expand Up @@ -4769,7 +4769,7 @@ public static function filter_request($input,$key,$type,$base64=FALSE)

if (is_array($input))
{
return array_walk($input, array('self', 'filter_request'), $type);
return array_walk($input, array(self::class, 'filter_request'), $type);
}


Expand Down
2 changes: 2 additions & 0 deletions e107_handlers/e_parse_class.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cb1bbc7

Please sign in to comment.