Add multi-page control to list of un-queued testData

This commit is contained in:
Alexander Nicolaysen Sørnes
2007-06-12 00:02:41 +00:00
committed by WineHQ
parent 956186d1c1
commit ffd812b8a6
4 changed files with 56 additions and 12 deletions

View File

@@ -532,14 +532,14 @@ class ObjectManager
$oObject = new $this->sClass();
if(!method_exists($oObject, "objectGetItemsPerPage") ||
$oObject->objectGetItemsPerPage() === FALSE)
$oObject->objectGetItemsPerPage($this->bIsQueue) === FALSE)
{
/* Do not enable the MultiPage controls */
$this->oMultiPage->MultiPage(FALSE);
return;
}
$aReturn = $oObject->objectGetItemsPerPage();
$aReturn = $oObject->objectGetItemsPerPage($this->bIsQueue);
$aItemsPerPage = $aReturn[0];
$iDefaultPerPage = $aReturn[1];