Skip to content

Commit c8ab365

Browse files
authored
Merge pull request #2 from magento-trigger/zf1-update
php 8 compatibility in Zend_Xml_Security class
2 parents 6ad8150 + c5206c6 commit c8ab365

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

library/Zend/Xml/Security.php

+13-6
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,10 @@ public static function scan($xml, DOMDocument $dom = null)
8383
}
8484

8585
if (!self::isPhpFpm()) {
86-
$loadEntities = libxml_disable_entity_loader(true);
86+
if (LIBXML_VERSION < 20900) {
87+
// this function no longer has an effect in PHP 8.0, but it's required in earlier versions
88+
$loadEntities = libxml_disable_entity_loader(true);
89+
}
8790
$useInternalXmlErrors = libxml_use_internal_errors(true);
8891
}
8992

@@ -97,7 +100,9 @@ public static function scan($xml, DOMDocument $dom = null)
97100
if (!$result) {
98101
// Entity load to previous setting
99102
if (!self::isPhpFpm()) {
100-
libxml_disable_entity_loader($loadEntities);
103+
if (isset($loadEntities)) {
104+
libxml_disable_entity_loader($loadEntities);
105+
}
101106
libxml_use_internal_errors($useInternalXmlErrors);
102107
}
103108
return false;
@@ -117,7 +122,9 @@ public static function scan($xml, DOMDocument $dom = null)
117122

118123
// Entity load to previous setting
119124
if (!self::isPhpFpm()) {
120-
libxml_disable_entity_loader($loadEntities);
125+
if (isset($loadEntities)) {
126+
libxml_disable_entity_loader($loadEntities);
127+
}
121128
libxml_use_internal_errors($useInternalXmlErrors);
122129
}
123130

@@ -167,10 +174,10 @@ public static function scanFile($file, DOMDocument $dom = null)
167174
public static function isPhpFpm()
168175
{
169176
$isVulnerableVersion = (
170-
version_compare(PHP_VERSION, '5.5.22', 'lt')
177+
version_compare(PHP_VERSION, '5.5.22', '<')
171178
|| (
172-
version_compare(PHP_VERSION, '5.6', 'gte')
173-
&& version_compare(PHP_VERSION, '5.6.6', 'lt')
179+
version_compare(PHP_VERSION, '5.6', '>=')
180+
&& version_compare(PHP_VERSION, '5.6.6', '<')
174181
)
175182
);
176183

0 commit comments

Comments
 (0)