Skip to content

Commit

Permalink
Fix taxes
Browse files Browse the repository at this point in the history
  • Loading branch information
ecartz committed May 13, 2021
1 parent 785b88b commit 36d3441
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/functions/general.php
Expand Up @@ -106,7 +106,7 @@ function tep_round($number, $precision) {
return currencies::round($number, $precision);
}

function tep_get_tax_rate($class_id, $country_id = -1, $zone_id = -1) {
function tep_get_tax_rate($class_id, $country_id = null, $zone_id = null) {
return Tax::get_rate($class_id, $country_id, $zone_id);
}

Expand Down

0 comments on commit 36d3441

Please sign in to comment.