VirtueMart Forum

VirtueMart Dev/Coding Central: VM1 (old version) => Development Projects, Modifications, Hacks & Tweaks. VM1.1 => Shipping Modules => Topic started by: Simon A. on January 31, 2008, 20:08:30 PM

Title: Bugfix: changing shipping address
Post by: Simon A. on January 31, 2008, 20:08:30 PM
I've noticed that shipping costs don't update properly when the user uses the 'back' button to change his address.

This fix is to version 1.0.14, file checkout.index.php.

Around line 168:
           $vars["weight"] = $weight_total;
            $i = 0;
           
            foreach( $PSHOP_SHIPPING_MODULES as $shipping_module ) {

This becomes:
           $vars["weight"] = $weight_total;
            $i = 0;
            $vars["ship_to_info_id"] = $ship_to_info_id;
           
            foreach( $PSHOP_SHIPPING_MODULES as $shipping_module ) {

How do I get this included as an 'official' bugfix?
Title: Re: Bugfix: changing shipping address
Post by: aravot on February 01, 2008, 00:48:30 AM
You can report bugs and fixes in tracker http://dev.virtuemart.net/cb/project/1 however VirtueMart 1.0.14 probably is the last update to VM 1.0.x series unless major security issues are found, all efforts are directed towards VirtueMart 1.1, so it would be helpful if you could submit bugs or fixes for VM 1.1, thank you.