htmlparser: bug parsing tag attribute without value
Status: Beta
Brought to you by:
jhsolorz
htmlparser: bug parsing tag attribute without value.
example:
<input type="radio" disabled name="nam" value="val">
htmlparser stops parsing this rag after 'disabled' attribute.
Fix: just place line 265 before line 262.
Patched:
Lines 262-265:
$sb .= $ch;
if (!$match) {
return $sb;
}