ZF-4356: Problems with loading HTML files using Zend_Search_Lucene_Document_Html class
Description
Some files produces warnings while they are loaded using Zend_Search_Lucene_Document_Html class.
That's actually PHP bug (just registered as PHP bug #46159).
Workarownd:
DOMDocument::loadHTMLFile($fname);
==>
$htmlData = file_get_contents($fname);
DOMDocument::loadHTML($htmlData);
Comments
Posted by Alexander Veremyev (alexander) on 2008-09-23T05:19:46.000+0000
r11488 fixes issue for the trunk r11489 fixes issue for the release-1.6 branch.
Posted by Wil Sinclair (wil) on 2008-10-10T14:40:50.000+0000
Must reopen to set correct release.
Posted by Alexander Veremyev (alexander) on 2008-10-11T03:56:19.000+0000
Fixed for 1.6.2 and 1.7 Preview release
Posted by Wil Sinclair (wil) on 2008-11-13T14:10:30.000+0000
Changing issues in preparation for the 1.7.0 release.