add missing quote in html returned by handle_pixel theme

This commit is contained in:
jellykells 2021-09-06 12:20:27 -05:00 committed by Shish
parent f5b3276e62
commit 9e52434480

View file

@ -30,7 +30,7 @@ class PixelFileHandlerTheme extends Themelet
}
$html = "<img alt='main image' class='shm-main-image' id='main_image' src='$u_ilink' ".
"data-width='{$image->width}' data-height='{$image->height} data-mime='{$image->get_mime()}'>";
"data-width='{$image->width}' data-height='{$image->height}' data-mime='{$image->get_mime()}'>";
$page->add_block(new Block("Image", $html, "main", 10));
}
}