Fix loading of 'Runs?' value in the testData form, otherwise the value is displayed as

though no value is set
This commit is contained in:
Alexander Nicolaysen Sørnes
2007-04-26 00:17:42 +00:00
committed by WineHQ
parent b11cce6711
commit a7789c2a8d

View File

@@ -719,7 +719,7 @@ class testData{
{
echo "<select name='$sVarname'>\n";
echo "<option value=\"\">Choose ...</option>\n";
$aRating = array("Yes", "No", "Not Installable");
$aRating = array("Yes", "No", "Not installable");
$iMax = count($aRating);
for($i=0; $i < $iMax; $i++)