From f68d979048af6074869ab999c07c301ab2249cb0 Mon Sep 17 00:00:00 2001 From: JT Smith Date: Mon, 30 Mar 2009 18:41:44 +0000 Subject: [PATCH] removed a check that shouldn't be happening, at least not in this method. --- lib/WebGUI/Shop/Cart.pm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/WebGUI/Shop/Cart.pm b/lib/WebGUI/Shop/Cart.pm index 8d18a7802..62fc97c82 100644 --- a/lib/WebGUI/Shop/Cart.pm +++ b/lib/WebGUI/Shop/Cart.pm @@ -503,10 +503,6 @@ sub readyForCheckout { my $address = eval{$self->getShippingAddress}; return 0 if WebGUI::Error->caught; - # Check if the ship driver is chosen and existant - my $ship = eval {$self->getShipper}; - return 0 if WebGUI::Error->caught; - # Check if the cart has items return 0 unless scalar @{ $self->getItems };