ChangeSet ID: 31265 CVSROOT: /opt/cvs-commit Module name: appdb Changes by: wineowner@winehq.org 2007/07/23 15:45:22
Modified files: include : testData.php
Log message: Chris Morgan cmorgan@alum.wpi.edu Fix testData submission where the tested version is missing due to switching from a function that previously echoed data out to one that returns the string for the caller to optionally echo. The lack of echoing meant the version list html wasn't being output.
Patch: http://cvs.winehq.org/patch.py?id=31265
Old revision New revision Changes Path 1.69 1.70 +1 -1 appdb/include/testData.php
Index: appdb/include/testData.php diff -u -p appdb/include/testData.php:1.69 appdb/include/testData.php:1.70 --- appdb/include/testData.php:1.69 23 Jul 2007 20:45:22 -0000 +++ appdb/include/testData.php 23 Jul 2007 20:45:22 -0000 @@ -649,7 +649,7 @@ class testData{
// Version List echo '<tr><td class=color1><b>Tested release</b></td><td class=color0>',"\n"; - make_bugzilla_version_list("sTestedRelease", $this->sTestedRelease); + echo make_bugzilla_version_list("sTestedRelease", $this->sTestedRelease); // Give the user some information about our available versions echo "<ul>\n"; echo "<li>If you are testing with a newer release than listed please";