Intento de modificación:
Código:
$_paginas = 10;
function nroPaginas() {
if ($this->pagina() > 4) { $inicio = $this->pagina() - 4; }
else { $inicio = $this->pagina(); }
$final = $inicio + $_paginas;*/
for($i = $inicio; $i <= $this->totalPaginas() && $i < $final; $i++) { $temp[$i] = "<a href=\"?pagina=$i".$this->propagar()."\">$i</a>"; }
$temp[$this->pagina()] = "<b>".$this->pagina()."</b>";
return implode(" - ", $temp);
}
Sin embargo, no funciona :(
Tendré que seguir investigando ;)
Joe Tawers,
<a href="http://www.ilimit.com/towers">http://www.ilimit.com/towers</a>