Lets users submit application testing results in a uniform and easy to process manner

This commit is contained in:
Tony Lambregts
2005-10-17 03:59:24 +00:00
committed by WineHQ
parent c1aa7e392e
commit ba6e92d184
13 changed files with 1686 additions and 4 deletions

View File

@@ -117,7 +117,7 @@ function make_bugzilla_version_list($varname, $cvalue)
if(!$result) return;
echo "<select name='$varname'>\n";
echo "<option value=\" \">Choose ...</option>\n";
echo "<option value=\"\">Choose ...</option>\n";
while(list($value) = mysql_fetch_row($result))
{
if($value == $cvalue)
@@ -132,7 +132,7 @@ function make_maintainer_rating_list($varname, $cvalue)
{
echo "<select name='$varname'>\n";
echo "<option value=\" \">Choose ...</option>\n";
echo "<option value=\"\">Choose ...</option>\n";
$aRating = array("Gold", "Silver", "Bronze", "Garbage");
$iMax = count($aRating);