From 7ca6909fa910fd5ab36bfb6cdb07aaeac64520a6 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 23 Nov 2011 08:06:11 -0600 Subject: [PATCH] Tweaking paginator comments. --- laravel/paginator.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/laravel/paginator.php b/laravel/paginator.php index 98259eb0..033df32c 100644 --- a/laravel/paginator.php +++ b/laravel/paginator.php @@ -223,7 +223,6 @@ public function slider($adjacent = 3) { return $this->range(1, $window + 2).' '.$this->ending(); } - // Example: 1 2 ... 32 33 34 35 [36] 37 elseif ($this->page >= $this->last - $window) { @@ -367,9 +366,6 @@ protected function range($start, $end) */ protected function link($page, $text, $class) { - // First we need to construct the link's query string. This consists - // of the page number and any developer specified items that should - // be appended to the query string. $query = '?page='.$page.$this->appendage($this->appends); return HTML::link(URI::current().$query, $text, compact('class'), Request::secure());