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

@@ -74,13 +74,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?imageId=$ob->id&width=128&height=128' ".
"border=0 alt='$ob->description' />";
"alt='$ob->description' />";
}
$img = html_frame_start("",'128','',2);