From 79dc7757a6d92d758c41586a32fcffbb1c514987 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Mon, 17 Mar 2008 17:46:28 +0000 Subject: [PATCH] fix syntax error in FlatRate, calculate --- lib/WebGUI/Shop/ShipDriver/FlatRate.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Shop/ShipDriver/FlatRate.pm b/lib/WebGUI/Shop/ShipDriver/FlatRate.pm index 5e69a56d3..b641ea88d 100644 --- a/lib/WebGUI/Shop/ShipDriver/FlatRate.pm +++ b/lib/WebGUI/Shop/ShipDriver/FlatRate.pm @@ -55,7 +55,7 @@ sub calculate { } } if ($anyShippable) { - $cost += $flatFee; + $cost += $self->get('flatFee'); } return $cost; }