OsCommerce paging problems with administrting products attributes
Posted by admin on November 25 2008 10:19:07

OsCommerce problems with administrting products attributes


In you have some paging problems with paging in products attributes page in administration

admin/products_attributes.php


Please add this lines at line 18 in file admin/products_attributes.php

UNDER   $action = (isset($HTTP_GET_VARS['action']) ? $HTTP_GET_VARS['action'] : '');

ADD:

  if( isset($HTTP_GET_VARS['option_page']) )    { $option_page    = $HTTP_GET_VARS['option_page']; }
  if( isset($HTTP_GET_VARS['value_page']) )     { $value_page     = $HTTP_GET_VARS['value_page']; }
  if( isset($HTTP_GET_VARS['attribute_page']) ) { $attribute_page = $HTTP_GET_VARS['attribute_page']; }