From b1133d9118d36f236a3809132172a1b5cae66b3f Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Thu, 27 Oct 2011 21:39:09 -0700 Subject: [PATCH] Fix a typo in the cart. --- lib/WebGUI/Shop/Cart.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Shop/Cart.pm b/lib/WebGUI/Shop/Cart.pm index 56ef8c13f..af85c1dc2 100644 --- a/lib/WebGUI/Shop/Cart.pm +++ b/lib/WebGUI/Shop/Cart.pm @@ -1226,7 +1226,7 @@ sub www_view { $addressBook->appendAddressFormVars(\%var, 'shipping_', $shippingAddressData); $addressBook->appendAddressFormVars(\%var, 'billing_', $billingAddressData); - my $has_billing_addr - $self->get('billingAddressId') ? 1 : 0; + my $has_billing_addr = $self->get('billingAddressId') ? 1 : 0; $var{sameShippingAsBilling} = WebGUI::Form::yesNo($session, { name => 'sameShippingAsBilling',