Ver Mensaje Individual
  #2 (permalink)  
Antiguo 25/03/2008, 05:41
Avatar de viclopla21
viclopla21
 
Fecha de Ingreso: marzo-2008
Mensajes: 7
Antigüedad: 16 años, 2 meses
Puntos: 0
Re: Error en osCommerce

A ver si te ayuda esto:

Hay que reemplazar . $offset . por . max($offset, 0) .
- Cambiar en admin/includes/classes/split_page_results.php
//corrección
//$sql_query .= " limit " . $offset . ", " . $max_rows_per_page; $sql_query .= " limit " . max($offset, 0) . ", " . $max_rows_per_page;
- Cambiar en includes/classes/split_page_results.php
//corrección
//$this->sql_query .= " limit " . $offset . ", " . $this->number_of_rows_per_page; $this->sql_query .= " limit " . max($offset, 0) . ", " . $this->number_of_rows_per_page;