From 36d3441bc619b34175af4947cc0e3ebbc398e4c9 Mon Sep 17 00:00:00 2001 From: Matt Fletcher Date: Thu, 13 May 2021 22:19:31 +0000 Subject: [PATCH] Fix taxes --- includes/functions/general.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/functions/general.php b/includes/functions/general.php index c13f65c75..9a8f9a9a3 100644 --- a/includes/functions/general.php +++ b/includes/functions/general.php @@ -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); }