Sorry to bother you because I am most probably wrong and this is not a bug, I thought I better post it just in case. I haven't found any post on this subject.
In Zencart 1.3.8, ot_shipping.php, at line 61, we have:
The thing is, left like that, no matter what I choose in the admin, I always get the default "Store" basis for shipping tax calculation, because the property always evaluates as not defined.PHP Code:if (!defined($GLOBALS[$module]->tax_basis)) {
I changed this for:
And it seems to work as it should. Am I doing somehting wrong?PHP Code:if (!isset($GLOBALS[$module]->tax_basis)) {






Bookmarks