Module: appdb Branch: master Commit: a1c7735b754dbbcee29af7a51976af444c101523 URL: http://source.winehq.org/git/appdb.git/?a=commit;h=a1c7735b754dbbcee29af7a51...
Author: Jeremy Newman jnewman@codeweavers.com Date: Tue Nov 22 10:24:09 2016 -0600
fix typo on height
---
include/screenshot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/screenshot.php b/include/screenshot.php index a0033c5..1c14aed 100644 --- a/include/screenshot.php +++ b/include/screenshot.php @@ -585,7 +585,7 @@ class screenshot if (!$sImgHeight) $sImgHeight = '100'; $this->sDescription = preg_replace('/\n/', '', $this->sDescription); - return "<div class="whq-shot"><img src="{$sImgUrl}&bThumbnail=true" style="width:{$sImgWidth}px;height{$sImgHeight}:px;" ". + return "<div class="whq-shot"><img src="{$sImgUrl}&bThumbnail=true" style="width:{$sImgWidth}px;height:{$sImgHeight}px;" ". "alt="{$this->sDescription}" data-shot="{$sImgUrl}"><i class="fa fa-search-plus"></i></div>\n"; }