Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tax address entries reversed #6069

Merged
merged 1 commit into from Nov 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions includes/functions/functions_taxes.php
Expand Up @@ -361,8 +361,8 @@ function zen_get_tax_locations($store_country = -1, $store_zone = -1)
// If we're just starting the checkout process via the PPEC button, there's
// no customer or shipping-address currently defined. Use the store values for tax calculation.
if (!zen_is_logged_in()) {
$tax_address['zone_id'] = (int)STORE_COUNTRY;
$tax_address['country_id'] = (int)STORE_ZONE;
$tax_address['zone_id'] = (int)STORE_ZONE;
$tax_address['country_id'] = (int)STORE_COUNTRY;
return $tax_address;
}
switch (STORE_PRODUCT_TAX_BASIS) {
Expand Down