Skip to content

Commit

Permalink
Merge pull request #4939 from Deltik/fix/4938
Browse files Browse the repository at this point in the history
#4938: Workaround for PHP 8.2.0 segmentation fault / assertion error
  • Loading branch information
CaMer0n authored Jan 3, 2023
2 parents 1b57865 + 6b75f34 commit 3bdb545
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e107_handlers/xml_class.php
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ function xml2array($xml, $rec_parent = '')

$ret = array();

$tags = get_object_vars($xml);
$tags = (array) $xml;


//remove comments
Expand Down

0 comments on commit 3bdb545

Please sign in to comment.