Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Error on Shipping Module page in admin


Bryan

Recommended Posts

I am trying to set up our shipping charges by 'Table Rate' and when I click on that option I get the following:

 

Warning: call_user_func() expects first argument, 'tep_get_zone_class_title', to be a valid callback in /path/to/the/store_admin/admin/includes/functions/general.php on line 1214

 

Ideas?

Link to comment
Share on other sites

If it helps this is the section of code in question:

 

function tep_call_function($function, $parameter, $object = '') {

if ($object == '') {

return call_user_func($function, $parameter); // line 1214

} elseif (PHP_VERSION < 4) {

return call_user_method($function, $object, $parameter);

} else {

return call_user_func(array($object, $function), $parameter);

}

 

I did replace the general.php as part of the Big Images contribution. Is this a known issue by chance?

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...