Fixed PHP compatibility issue

This commit is contained in:
Derick Rethans
2025-06-12 16:41:32 +01:00
parent 3bf58f3517
commit f324216096
2 changed files with 2 additions and 2 deletions

View File

@@ -656,7 +656,7 @@ class XML_Parser extends PEAR
* @return null
* @abstract
*/
function startHandler($xp, $elem, &$attribs)
function startHandler($xp, $elem, $attribs)
{
return null;
}

View File

@@ -218,7 +218,7 @@ class XML_Parser_Simple extends XML_Parser
* @access private
* @final
*/
function startHandler($xp, $elem, &$attribs)
function startHandler($xp, $elem, $attribs)
{
array_push($this->_elStack, array(
'name' => $elem,