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()); } /**