From 10afef1abe5c0b59767d4d0b44f08bd684a720b6 Mon Sep 17 00:00:00 2001 From: Doug Bell Date: Thu, 21 Aug 2008 20:40:37 +0000 Subject: [PATCH] fixed: choosing ITransact driver during checkout causes error --- docs/changelog/7.x.x.txt | 1 + lib/WebGUI/Shop/PayDriver/ITransact.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 00c64fe1a..26fbdd1b5 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -27,6 +27,7 @@ - fixed: edit operation sql error, Thingy (Yung Han Khoe) - fixed: Thingy: default thing property hidden (Yung Han Khoe) - fixed: Ad Space Description Text Keeps Repopulating + - fixed: choosing ITransact plugin during checkout causes error - fixed: Disabled Shipping methods still available - fixed: Inherit Url From Parent is broken - added: ability to have metadata tags in head blocks diff --git a/lib/WebGUI/Shop/PayDriver/ITransact.pm b/lib/WebGUI/Shop/PayDriver/ITransact.pm index 1353e9e7b..9b1087787 100644 --- a/lib/WebGUI/Shop/PayDriver/ITransact.pm +++ b/lib/WebGUI/Shop/PayDriver/ITransact.pm @@ -614,7 +614,7 @@ sub www_getCredentials { $addressData = eval{ $self->getAddress( $addressId )->get() } || {}; } else { - $addressData = $self->getCart->getShippingAddress; + $addressData = $self->getCart->getShippingAddress->get; } my $output;