diff --git a/contrib/handle_ico/theme.php b/contrib/handle_ico/theme.php index 95639ee3..49c8a666 100644 --- a/contrib/handle_ico/theme.php +++ b/contrib/handle_ico/theme.php @@ -3,7 +3,13 @@ class IcoFileHandlerTheme extends Themelet { public function display_image($page, $image) { $ilink = $image->get_image_link(); - $html = ""; + $width = $image->width; + $height = $image->height; + $html = " + + + + "; $page->add_block(new Block("Image", $html, "main", 0)); } }