Fix bug producing invalid HTML

This commit is contained in:
David Sferruzza 2013-03-10 19:03:34 +01:00
parent 310f3ca007
commit a908244cc4
1 changed files with 0 additions and 1 deletions

View File

@ -1979,7 +1979,6 @@ function lazyThumbnail($url,$href=false)
else
$html.='<img class="lazyimage" src="#" data-original="'.htmlspecialchars($t['src']).'"';
$html.='<img class="lazyimage" src="#" data-original="'.htmlspecialchars($t['src']).'"';
if (!empty($t['width'])) $html.=' width="'.htmlspecialchars($t['width']).'"';
if (!empty($t['height'])) $html.=' height="'.htmlspecialchars($t['height']).'"';
if (!empty($t['style'])) $html.=' style="'.htmlspecialchars($t['style']).'"';