Shows votes for an app in appview

This commit is contained in:
Paul van Schayck
2004-12-28 00:05:00 +00:00
committed by WineHQ
parent 4e2c7b2106
commit ea27897238

View File

@@ -267,9 +267,12 @@ if($appId && !$versionId)
echo " <tr class=color1 valign=top><td align=right> <b>Vendor</b></td><td> ".
" <a href='vendorview.php?vendorId=$vendor->vendorId'> ".stripslashes($vendor->vendorName)." </a> &nbsp;\n";
echo " <tr class=color0 valign=top><td align=right> <b>BUGS</b></td><td> ".
" <a href='bugs.php?appId=$data->appId.'> Check for bugs in bugzilla </a> &nbsp;\n";
" <a href='bugs.php?appId=$data->appId.'> Check for bugs in bugzilla </a> &nbsp;\n";
echo " </td></tr>\n";
echo " <tr class=color0 valign=top><td align=right> <b>Votes</b></td><td> ";
echo vote_count_app_total($data->appId);
echo " </td></tr>\n";
// display notes
display_notes($appId);