From 0f17aff723e5d52a84e9731ede0f9764437b59a6 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 21 Jul 2011 07:52:43 -0700 Subject: [PATCH] Added "dots" class to paginator. --- system/paginator.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/paginator.php b/system/paginator.php index 1080e0ec..b601c17c 100644 --- a/system/paginator.php +++ b/system/paginator.php @@ -180,7 +180,7 @@ class Paginator { */ protected function beginning() { - return $this->range(1, 2).' ... '; + return $this->range(1, 2).'...'; } /** @@ -190,7 +190,7 @@ class Paginator { */ protected function ending() { - return ' ... '.$this->range($this->last_page() - 1, $this->last_page()); + return '...'.$this->range($this->last_page() - 1, $this->last_page()); } /**