Remove border=0 from img tags

This commit is contained in:
Paul van Schayck
2004-12-15 00:14:04 +00:00
committed by WineHQ
parent d1a279f4ac
commit f2b58f208e
7 changed files with 27 additions and 27 deletions

View File

@@ -29,13 +29,13 @@ function get_screenshot_img($appId, $versionId)
if(!$result || !mysql_num_rows($result))
{
$imgFile = "<img src='".$apidb_root."images/no_screenshot.gif' border=0 alt='No Screenshot'>";
$imgFile = "<img src='".$apidb_root."images/no_screenshot.gif' alt='No Screenshot'>";
}
else
{
$ob = mysql_fetch_object($result);
$imgFile = "<img src='appimage.php?appId=$appId&versionId=$versionId&width=128&height=128' ".
"border=0 alt='$ob->description'>";
"alt='$ob->description'>";
}
$img = html_frame_start("",'128','',2);