diff --git a/system/paginator.php b/system/paginator.php index a8a7378b..a15a13bf 100644 --- a/system/paginator.php +++ b/system/paginator.php @@ -187,6 +187,16 @@ class Paginator { return HTML::span('...', array('class' => 'dots')).' '; } + /** + * Determine the last page number based on the total pages and per page limit. + * + * @return int + */ + private function last_page() + { + return ceil($this->total / $this->per_page); + } + /** * Build a range of page links. * @@ -208,16 +218,6 @@ class Paginator { return $pages; } - /** - * Determine the last page number based on the total pages and per page limit. - * - * @return int - */ - private function last_page() - { - return ceil($this->total / $this->per_page); - } - /** * Set the language that should be used when generating page links. *