From: Andreas Unterkircher Date: Sun, 6 Jan 2008 10:16:49 +0000 (+0100) Subject: fixed height of thumbnail boxes X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=phpfspot.git;a=commitdiff_plain;h=7eaf3d147420cb0a99296bafe91ac62be0700dcb fixed height of thumbnail boxes Signed-off-by: Andreas Unterkircher --- diff --git a/phpfspot.class.php b/phpfspot.class.php index b9ed198..f686321 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -1094,8 +1094,8 @@ class PHPFSPOT { $this->tmpl->assign('rss_link', $rss_link); $this->tmpl->assign('count', $count); $this->tmpl->assign('width', $this->cfg->thumb_width); - $this->tmpl->assign('thumb_container_width', $this->cfg->thumb_width+20); - $this->tmpl->assign('thumb_container_height', $this->cfg->thumb_height); + $this->tmpl->assign('thumb_container_width', $this->cfg->thumb_width); + $this->tmpl->assign('thumb_container_height', $this->cfg->thumb_height+20); $this->tmpl->assign('images', $images); $this->tmpl->assign('img_width', $img_width); $this->tmpl->assign('img_height', $img_height);