Skip to content

Commit

Permalink
Fix a typo in the cart.
Browse files Browse the repository at this point in the history
  • Loading branch information
perlDreamer committed Oct 28, 2011
1 parent 36dec3b commit b1133d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/WebGUI/Shop/Cart.pm
Expand Up @@ -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',
Expand Down

0 comments on commit b1133d9

Please sign in to comment.