Bug 4472 - Missing / in img tags breaking xslt (and other img tags)

This commit is contained in:
Chris Cormack 2010-06-15 09:59:40 +12:00
parent 4c14cd317e
commit cca42b1e41

View file

@ -74,10 +74,16 @@ sub text_replace_tag ($$) {
sprintf(' %s=%s', $_, $attr->{$_}->[2]) #FIXME
} sort {
$attr->{$a}->[3] <=> $attr->{$b}->[3] #FIXME
} keys %$attr)
. '>';
} else {
$it = $t;
} keys %$attr);
if ($tag eq 'img'){
$it .= ' />';
}
else {
$it .= ' >';
}
}
else {
$it = $t;
}
return $it;
}