undefined Zone::get_code
Posted: Sun Jul 04, 2021 11:06 am
In admin/includes/functions/general:
Throws an error. I think it should be:
Code: Select all
function tep_get_zone_code($country, $zone, $default_state) {
return Zone::get_code($zone, $country, $default_state);
}
Code: Select all
function tep_get_zone_code($country, $zone, $default_state) {
return Zone::fetch_code($zone, $country, $default_state);
}