View Single Post
  #2  
Old 07-27-2013, 12:30 PM
Infernette Infernette is offline
CODE CODE CODE CODE CODE
 
Join Date: Jan 2013
Location: Where I live? I live home.
Posts: 164
Gender: Female
Credits: 24,526
Infernette is on a distinguished road
Default

Figured it out- In classes_pagination in the function showpage it has this:
Code:
			elseif($this->getLastPage() >= 9){
				if($page < 4)		{
					for ($counter = 1; $counter < 6; $counter++){
						if ($counter == $page)
							$pagination .= "<span class='current'>{$counter}</span>";
						else
							$pagination .= "<a href='{$this->website}{$this->symbol}page-{$counter}'>{$counter}/</a>";
You do not need the slash at the end. :) (It messed me up D:)
Code:
			elseif($this->getLastPage() >= 9){
				if($page < 4)		{
					for ($counter = 1; $counter < 6; $counter++){
						if ($counter == $page)
							$pagination .= "<span class='current'>{$counter}</span>";
						else
							$pagination .= "<a href='{$this->website}{$this->symbol}page-{$counter}'>{$counter}</a>";
__________________
No, I have no idea what I'm doing. But it works. Barely.
Reply With Quote