From 9065aa9eb8c92d3edd4199f98a0975de9a9cbb4d Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Mon, 18 Apr 2011 12:03:31 -0700 Subject: [PATCH] Fix a syntax error in the Transaction. --- lib/WebGUI/Shop/Transaction.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Shop/Transaction.pm b/lib/WebGUI/Shop/Transaction.pm index 3b228bfe0..1e379f0cf 100644 --- a/lib/WebGUI/Shop/Transaction.pm +++ b/lib/WebGUI/Shop/Transaction.pm @@ -490,7 +490,7 @@ sub getTransactionVars { %{$item->get}, %taxVars, viewItemUrl => $url->page('shop=transaction;method=viewItem;transactionId='.$self->getId.';itemId='.$item->getId, 1), - hasSku => $hasSku, + hasSku => $has_sku, price => sprintf( "%.2f", $item->get('price') ), pricePlusTax => sprintf( "%.2f", $price + $taxAmount ), extendedPrice => sprintf( "%.2f", $quantity * $price ),