Skip to content
Snippets Groups Projects
Commit 23222c6e authored by Christoph Miebach's avatar Christoph Miebach
Browse files

close img tag for screenshots

parent 95cca857
No related branches found
No related tags found
No related merge requests found
......@@ -579,7 +579,7 @@ function drawScreenshots($screenshots) {
$src = $first ? $screenshot['src'] : '';
$srcLazy = $first ? '' : $screenshot['src'];
$dom = '<div class="screenshot2 '.getImageOrientation($screenshot['src']).'">';
$dom .= '<img src="'.$src.'" alt="'.$screenshot['name'].'" data-lazy="'.$srcLazy.'">';
$dom .= '<img src="'.$src.'" alt="'.$screenshot['name'].'" data-lazy="'.$srcLazy.'" />';
$dom .= '</div>';
echo $dom;
$first = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment