Ver Mensaje Individual
  #18 (permalink)  
Antiguo 31/05/2009, 00:15
Avatar de abimaelrc
abimaelrc
Colaborador
 
Fecha de Ingreso: mayo-2009
Ubicación: En el planeta de Puerto Rico
Mensajes: 14.734
Antigüedad: 15 años
Puntos: 1517
Respuesta: Mejorar paginacion

hiciste primero el cambio de esto
this->range_min = ($this->range % 2 == 0) ? ($this->range / 2) -1 : ($this->range - 1) / 2;


lo tienes en el class así
this->range_min = ($this->range & 2 == 0) ? ($this->range / 2) -1 : ($this->range - 1) / 2;


y debe estar como el primero