Commit 860c2820 authored by Taylor Otwell's avatar Taylor Otwell

Added closing div tag to paginator output.

parent bbfc8b88
......@@ -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>' : '';
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment