ChangeSet ID: 26329 CVSROOT: /opt/cvs-commit Module name: appdb Changes by: wineowner@winehq.org 2006/07/07 12:05:08
Modified files: . : testResults.php
Log message: Jonathan Ernst jonathan@ernstfamily.ch Enable filtering in testResults.php
Patch: http://cvs.winehq.org/patch.py?id=26329
Old revision New revision Changes Path 1.10 1.11 +1 -10 appdb/testResults.php
Index: appdb/testResults.php diff -u -p appdb/testResults.php:1.10 appdb/testResults.php:1.11 --- appdb/testResults.php:1.10 7 Jul 2006 17: 5: 8 -0000 +++ appdb/testResults.php 7 Jul 2006 17: 5: 8 -0000 @@ -5,22 +5,13 @@
include("path.php"); require(BASE."include/incl.php"); +require(BASE."include/filter.php"); require(BASE."include/tableve.php"); require(BASE."include/application.php"); require(BASE."include/mail.php"); require_once(BASE."include/testResults.php"); require_once(BASE."include/distributions.php");
-$aClean = array(); //array of filtered user input - -$aClean['sSub'] = makeSafe($_REQUEST['sSub']); -$aClean['iTestingId'] = makeSafe($_REQUEST['iTestingId']); -$aClean['iVersionId'] = makeSafe($_REQUEST['iVersionId']); -$aClean['iDistributionId'] = makeSafe($_REQUEST['iDistributionId']); -$aClean['sDistribution'] = makeSafe($_REQUEST['sDistribution']); - - - if ($aClean['sSub']) { $oTest = new testData($aClean['iTestingId']);