View Single Post
Old 04-18-2009, 05:04 PM   #17 (permalink)
ETbyrne
how quixotic are you?
 
ETbyrne's Avatar
 
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
ETbyrne is on a distinguished road
Default

Quote:
Maybe I'm missing something, but why not just use return range(1, $this->totalPages) in place of that entire chunk?
Don't look at me!

Also, getCurrentPage() could be reduced to:

PHP Code:
public function getCurrentPage(){
    
    return array(
$this->currentPage,$this->totalPages);
    

__________________
Dingo Web Systems > http://www.dingocode.com
My Website > http://www.evanbot.com
ETbyrne is offline  
Reply With Quote