Changeset 6763
- Timestamp:
- 12/27/07 17:09:11 (1 year ago)
- Files:
-
- branches/1.0/lib/addon/sfPager.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.0/lib/addon/sfPager.class.php
r3099 r6763 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