fixed: choosing ITransact driver during checkout causes error

This commit is contained in:
Doug Bell 2008-08-21 20:40:37 +00:00
parent fbc6e55141
commit 10afef1abe
2 changed files with 2 additions and 1 deletions

View file

@ -27,6 +27,7 @@
- fixed: edit operation sql error, Thingy (Yung Han Khoe) - fixed: edit operation sql error, Thingy (Yung Han Khoe)
- fixed: Thingy: default thing property hidden (Yung Han Khoe) - fixed: Thingy: default thing property hidden (Yung Han Khoe)
- fixed: Ad Space Description Text Keeps Repopulating - fixed: Ad Space Description Text Keeps Repopulating
- fixed: choosing ITransact plugin during checkout causes error
- fixed: Disabled Shipping methods still available - fixed: Disabled Shipping methods still available
- fixed: Inherit Url From Parent is broken - fixed: Inherit Url From Parent is broken
- added: ability to have metadata tags in head blocks - added: ability to have metadata tags in head blocks

View file

@ -614,7 +614,7 @@ sub www_getCredentials {
$addressData = eval{ $self->getAddress( $addressId )->get() } || {}; $addressData = eval{ $self->getAddress( $addressId )->get() } || {};
} }
else { else {
$addressData = $self->getCart->getShippingAddress; $addressData = $self->getCart->getShippingAddress->get;
} }
my $output; my $output;