Use objectMakeLink() in more places

This commit is contained in:
Alexander Nicolaysen Sørnes
2007-04-01 01:21:58 +00:00
committed by WineHQ
parent 434ef17426
commit cecc4bf6c0
9 changed files with 15 additions and 19 deletions

View File

@@ -168,8 +168,7 @@ if($hResult)
while($row = mysql_fetch_object($hResult))
{
$bgcolor = ($c % 2) ? "color0" : "color1";
$link = "<a href='appview.php?iVersionId=$row->versionId'>$row->appName ".
"$row->versionName</a>";
$link = version::fullNameLink($row->versionId);
echo "<tr class=$bgcolor><td width='90%'>$c. $link </td> <td> $row->count ".
"</td></tr>\n";
$c++;