Browse Source

Added closing div tag to paginator output.

Taylor Otwell 13 years ago
parent
commit
860c28206d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/paginator.php

+ 1 - 1
system/paginator.php

@@ -97,7 +97,7 @@ class Paginator {
 	 */
 	public function links($adjacent = 3)
 	{
-		return ($this->last_page > 1) ? '<div class="pagination">'.$this->previous().$this->numbers($adjacent).$this->next() : '';
+		return ($this->last_page > 1) ? '<div class="pagination">'.$this->previous().$this->numbers($adjacent).$this->next().'</div>' : '';
 	}
 
 	/**