bug-fix pagination Limit

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0-DB@8510 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
lickawtl 2011-06-20 09:25:58 +00:00
parent 4b3e591956
commit 32fe8750e9
3 changed files with 27 additions and 3 deletions

View file

@ -8,7 +8,7 @@
function Limit($list_count, $page= NULL, $page_count= NULL){
$this->list_count = $list_count;
if ($page){
$this->start = ($page-1)*$list_count;
$this->start = ($page-1)*$list_count->getValue();
$this->page_count = $page_count;
$this->page = $page;
}