From b601cfef5c4ba950f46a2b29db3e5785c7b8f4a1 Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Thu, 23 Jun 2005 02:28:07 +0000 Subject: [PATCH] Center the screenshot image so it is centered with respect to the text that may appear below it. --- include/screenshot.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/screenshot.php b/include/screenshot.php index 03357dc..bafd2fe 100644 --- a/include/screenshot.php +++ b/include/screenshot.php @@ -321,11 +321,11 @@ function get_screenshot_img($iAppId = null, $iVersionId = null) } if(!$hResult || !mysql_num_rows($hResult)) { - $sImgFile = 'No Screenshot'; + $sImgFile = '
No Screenshot
'; } else { $oRow = mysql_fetch_object($hResult); - $sImgFile = ''.$oRow->description.''; + $sImgFile = '
'.$oRow->description.'
'; } $sImg = html_frame_start("",'128','',2);