Hey guys,
I’m experiencing a strange problem where the Pagination link (First) is showing up as:
<< FirstP
Rather than:
<< First
This is occurring on weblog pagination, and I believe the problem occurs here:
core.paginate.php (Line 168):
$output .= $this->first_div_o.'<a href="'.$first_link.'">'.$this->first_page.$this->prefix.$this->suffix.'</a>'.$this->first_div_c;
Should be:
$output .= $this->first_div_o.'<a href="'.$first_link.'">'.$this->first_page.'</a>'.$this->first_div_c;
The argument I’m trying to make here is that the link text should not have anything in it other than the line taken from the language file.
EE v1.6.3, Build 20080319
