ChangeSet ID: 31007 CVSROOT: /opt/cvs-commit Module name: appdb Changes by: wineowner@winehq.org 2007/03/25 11:10:15
Modified files: . : testResults.php include : testData.php
Log message: Alexander Nicolaysen Sørnes alex@thehandofagony.com Add and use testData::objectDisplayAddItemHelp()
Patch: http://cvs.winehq.org/patch.py?id=31007
Old revision New revision Changes Path 1.27 1.28 +1 -5 appdb/testResults.php 1.30 1.31 +11 -0 appdb/include/testData.php
Index: appdb/testResults.php diff -u -p appdb/testResults.php:1.27 appdb/testResults.php:1.28 --- appdb/testResults.php:1.27 25 Mar 2007 16:10:15 -0000 +++ appdb/testResults.php 25 Mar 2007 16:10:15 -0000 @@ -114,11 +114,7 @@ if ($aClean['sSub'])
//help - echo "<p>This is the screen for inputing test information so that others looking at the database will know \n"; - echo "what was working on a particular release of Wine.</p>\n"; - echo "<p>Please be as detailed as you can.</p>\n"; - echo "<p>If you cannot find your distribution in the list of existing distributions, please add it in the \n"; - echo "provided field.</p>\n\n"; + $oTest->objectDisplayAddItemHelp();
if(!empty($errors)) { Index: appdb/include/testData.php diff -u -p appdb/include/testData.php:1.30 appdb/include/testData.php:1.31 --- appdb/include/testData.php:1.30 25 Mar 2007 16:10:15 -0000 +++ appdb/include/testData.php 25 Mar 2007 16:10:15 -0000 @@ -862,6 +862,17 @@ class testData{ /* STUB */ return TRUE; } + + function objectDisplayAddItemHelp() + { + echo "<p>This is the screen for inputing test information so that others "; + echo "looking at the database will know \n"; + echo "what was working on a particular release of Wine.</p>\n"; + echo "<p>Please be as detailed as you can.</p>\n"; + echo "<p>If you cannot find your distribution in the list of existing "; + echo "distributions, please add it in the \n"; + echo "provided field.</p>\n\n"; + } }
?>