Bryan Posted February 13, 2003 Share Posted February 13, 2003 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 More sharing options...
Bryan Posted February 13, 2003 Author Share Posted February 13, 2003 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 More sharing options...
Bryan Posted February 13, 2003 Author Share Posted February 13, 2003 Just to test I replaced the general.php file with the original (before Big Images contribution) and I get the same error? That is the only contribution I've added? Anyone seen this or have an idea? Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.