Store iPage in handleMultiPageControls(). Fixes the case where an iPage would not be set for

page 1, causing iItemsPerPage value to be ignored when returning from data processing
This commit is contained in:
Alexander Nicolaysen Sørnes
2007-06-16 17:00:57 +00:00
committed by WineHQ
parent 80ca144225
commit b9588ab76e

View File

@@ -689,6 +689,7 @@ class ObjectManager
/* Fill the MultiPage object with the LIMIT related values */
$iLowerLimit = ($iPage - 1) * $iItemsPerPage;
$this->oMultiPage->MultiPage(TRUE, $iItemsPerPage, $iLowerLimit);
$this->oMultiPage->iPage = $iPage;
}
function getQueueString($bQueued, $bRejected)