Use sState for objectGetEntries[Count]()

This commit is contained in:
Alexander Nicolaysen Sørnes
2008-01-20 21:31:15 +01:00
committed by Chris Morgan
parent 4297db9786
commit 9b92c2221c
20 changed files with 190 additions and 226 deletions

View File

@@ -137,14 +137,14 @@ class testData_queue
$this->oTestData->objectDisplayAddItemHelp();
}
function objectGetEntries($bQueued, $bRejected, $iRows = 0, $iStart = 0, $sOrderBy = "testingId")
function objectGetEntries($sState, $iRows = 0, $iStart = 0, $sOrderBy = "testingId")
{
return $this->oTestData->objectGetEntries($bQueued, $bRejected, $iRows, $iStart, $sOrderBy);
return $this->oTestData->objectGetEntries($sState, $iRows, $iStart, $sOrderBy);
}
function objectGetEntriesCount($bQueued, $bRejected)
function objectGetEntriesCount($sState)
{
return testData::objectGetEntriesCount($bQueued, $bRejected);
return testData::objectGetEntriesCount($sState);
}
function objectGetHeader()