Its in the Pageination.class.php at the bottom where the url are created,
This si what i done from line 179 to 204,
$output .= sprintf('<a href="' . $link . '">«</a>', '1');
}
if ($currentPage > 1){
$output .= sprintf('<a href="' . $link . '"> Previous </a>', $currentPage - 1);
}
for ($i = $loopStart; $i <= $loopEnd; $i++)
{
if ($i == $currentPage){
$output .= '' . $i . ' ';
} else {
$output .= sprintf('<a href="' . $link . '">', $i) . $i . '</a> ';
}
}
if ($currentPage < $totalPages){
$output .= sprintf('<a href="' . $link . '"> Next </a>', $currentPage + 1);
}
if ($loopEnd != $totalPages){
$output .= sprintf('<a href="' . $link . '">»</a>', $totalPages);
}
return ' ' . $output . ' ';
}