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

@@ -225,14 +225,14 @@ class version_queue
return $this->oVersion->objectGetItemsPerPage($sState);
}
function objectGetEntriesCount($bQueued, $bRejected)
function objectGetEntriesCount($sState)
{
return $this->oVersion->objectGetEntriesCount($bQueued, $bRejected);
return $this->oVersion->objectGetEntriesCount($sState);
}
function objectGetEntries($bQueued, $bRejected, $iRows = 0, $iStart = 0, $sOrderBy = "versionId")
function objectGetEntries($sState, $iRows = 0, $iStart = 0, $sOrderBy = "versionId")
{
return $this->oVersion->objectGetEntries($bQueued, $bRejected, $iRows, $iStart,
return $this->oVersion->objectGetEntries($sState, $iRows, $iStart,
$sOrderBy);
}