mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:02:54 +00:00
html5 - don't set empty attribute either
This commit is contained in:
parent
8a19c7c379
commit
ef79a7a4fc
1 changed files with 1 additions and 1 deletions
|
@ -3043,7 +3043,7 @@ class HTML5_TreeBuilder {
|
|||
foreach($token['attr'] as $attr) {
|
||||
// mike@macgirvin.com 2011-10-21, stray double quotes and/or numeric tags cause everything to abort
|
||||
$attr['name'] = str_replace('"','',$attr['name']);
|
||||
if(!$el->hasAttribute($attr['name']) && (! is_numeric($attr['name']))) {
|
||||
if($attr['name'] && (!$el->hasAttribute($attr['name'])) && (! is_numeric($attr['name']))) {
|
||||
$el->setAttribute($attr['name'], $attr['value']);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue