0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2024-12-22 08:21:52 +00:00

Autoloading must be skipped while checking for php builtin class.

This commit is contained in:
Viktor Khokhryakov 2017-03-20 10:42:28 +04:00
parent 6d50e5282a
commit b45c6f5363

View File

@ -96,7 +96,7 @@ class HTMLPurifier_Lexer
break;
}
if (class_exists('DOMDocument') &&
if (class_exists('DOMDocument', false) &&
method_exists('DOMDocument', 'loadHTML') &&
!extension_loaded('domxml')
) {