Changeset 6764
- Timestamp:
- 12/27/07 17:09:17 (10 months ago)
- Files:
-
- branches/1.1/lib/addon/sfPager.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/lib/addon/sfPager.class.php
r5016 r6764 94 94 public function haveToPaginate() 95 95 { 96 return (($this->get Page() != 0) && ($this->getNbResults() > $this->getMaxPerPage()));96 return (($this->getMaxPerPage() != 0) && ($this->getNbResults() > $this->getMaxPerPage())); 97 97 } 98 98