mirror of
https://github.com/php/web-pres2.git
synced 2026-03-23 23:12:07 +01:00
Fixed PHP compatibility issue
This commit is contained in:
2
vendor/pear/XML/Parser.php
vendored
2
vendor/pear/XML/Parser.php
vendored
@@ -656,7 +656,7 @@ class XML_Parser extends PEAR
|
||||
* @return null
|
||||
* @abstract
|
||||
*/
|
||||
function startHandler($xp, $elem, &$attribs)
|
||||
function startHandler($xp, $elem, $attribs)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
2
vendor/pear/XML/Parser/Simple.php
vendored
2
vendor/pear/XML/Parser/Simple.php
vendored
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user