ChangeSet ID: 26013
CVSROOT: /opt/cvs-commit
Module name: appdb
Changes by: wineowner(a)winehq.org 2006/06/25 19:44:44
Modified files:
include : application.php distributions.php incl.php
testResults.php version.php
Log message:
Chris Morgan <cmorgan(a)alum.wpi.edu>
Warn if magic quotes is enabled and explain a bit about why we require that magic quotes
be disabled. Also remove all of the conditional code that was working around cases where
we had magic quotes enabled. We were only working around a small portion of cases where magic
quotes was affecting the appdb.
Patch: http://cvs.winehq.org/patch.py?id=26013
Old revision New revision Changes Path
1.47 1.48 +8 -23 appdb/include/application.php
1.5 1.6 +3 -11 appdb/include/distributions.php
1.27 1.28 +21 -0 appdb/include/incl.php
1.20 1.21 +12 -29 appdb/include/testResults.php
1.55 1.56 +7 -24 appdb/include/version.php
ChangeSet ID: 26012
CVSROOT: /opt/cvs-commit
Module name: appdb
Changes by: wineowner(a)winehq.org 2006/06/24 00:02:56
Modified files:
include : testResults.php
Log message:
Chris Morgan <cmorgan(a)alum.wpi.edu>
Fix a warning due to missing first parameter when testData::OutputEditor() is called from adminTestResults.php.
At this point we never expect to have a $sDistribution so we can just default the parameter to a null string
Patch: http://cvs.winehq.org/patch.py?id=26012
Old revision New revision Changes Path
1.19 1.20 +1 -1 appdb/include/testResults.php
Index: appdb/include/testResults.php
diff -u -p appdb/include/testResults.php:1.19 appdb/include/testResults.php:1.20
--- appdb/include/testResults.php:1.19 24 Jun 2006 5: 2:56 -0000
+++ appdb/include/testResults.php 24 Jun 2006 5: 2:56 -0000
@@ -446,7 +446,7 @@ class testData{
}
// show the fields for editing
- function OutputEditor($sDistribution, $bNewDist=false)
+ function OutputEditor($sDistribution="", $bNewDist=false)
{
HtmlAreaLoaderScript(array("Test1", "Test2", "Test3"));
ChangeSet ID: 26007
CVSROOT: /opt/cvs-commit
Module name: appdb
Changes by: wineowner(a)winehq.org 2006/06/23 21:38:44
Modified files:
include : testResults.php
Log message:
Chris Morgan <cmorgan(a)alum.wpi.edu>
Fix entering a new distribution when submitting a new application or version
Patch: http://cvs.winehq.org/patch.py?id=26007
Old revision New revision Changes Path
1.17 1.18 +1 -1 appdb/include/testResults.php
Index: appdb/include/testResults.php
diff -u -p appdb/include/testResults.php:1.17 appdb/include/testResults.php:1.18
--- appdb/include/testResults.php:1.17 24 Jun 2006 2:38:44 -0000
+++ appdb/include/testResults.php 24 Jun 2006 2:38:44 -0000
@@ -542,7 +542,7 @@ class testData{
$errors .= "<li>Please enter the version of Wine that you tested with.</li>\n";
// No Distribution entered, and nothing in the list is selected
- if (empty($sDistribution) && !$aClean['iDistributionId'])
+ if (empty($aClean['sDistribution']) && !$aClean['iDistributionId'])
$errors .= "<li>Please enter a distribution.</li>\n";
if (empty($aClean['sInstalls']))