PHP Warning: DOMDocument::loadHTML(): unexpected end tag : li in Entity, line: 62 in PageQualityScorerReadability.php on line 72
I'm getting a hundreds of these, probably because we use li so much. This might be meaningles, in which case we should suppress these errors. Two options for doing so:
Wikimedia\AtEase\AtEase::suppressWarnings() and Wikimedia\AtEase\AtEase::restoreWarnings().
PHP Warning: DOMDocument::loadHTML(): unexpected end tag : li in Entity, line: 62 in PageQualityScorerReadability.php on line 72
I'm getting a hundreds of these, probably because we use
li
so much. This might be meaningles, in which case we should suppress these errors. Two options for doing so:Wikimedia\AtEase\AtEase::suppressWarnings()
andWikimedia\AtEase\AtEase::restoreWarnings()
.libxml_use_internal_errors( true )
, and after the code addlibxml_clear_errors();