ChangeSet ID: 31107 CVSROOT: /opt/cvs-commit Module name: appdb Changes by: wineowner@winehq.org 2007/04/25 19:17:42
Modified files: include : testData.php
Log message: Alexander Nicolaysen Sørnes alex@thehandofagony.com Fix loading of 'Runs?' value in the testData form, otherwise the value is displayed as though no value is set
Patch: http://cvs.winehq.org/patch.py?id=31107
Old revision New revision Changes Path 1.49 1.50 +1 -1 appdb/include/testData.php
Index: appdb/include/testData.php diff -u -p appdb/include/testData.php:1.49 appdb/include/testData.php:1.50 --- appdb/include/testData.php:1.49 26 Apr 2007 0:17:42 -0000 +++ appdb/include/testData.php 26 Apr 2007 0:17:42 -0000 @@ -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++)