base cart UI is working

This commit is contained in:
JT Smith 2008-02-28 02:15:03 +00:00
parent 12d2ce6c16
commit 99f1fc5eb8
6 changed files with 32 additions and 23 deletions

View file

@ -67,7 +67,7 @@ sub addToCart {
my ($self, $options) = @_;
$self->applyOptions($options);
my $cart = WebGUI::Shop::Cart->create($self->session);
my $cart->addItem($self);
$cart->addItem($self);
}
#-------------------------------------------------------------------