From 2a66f149e8e77a55366830974391e4b36c0787dd Mon Sep 17 00:00:00 2001 From: JT Smith Date: Tue, 7 Oct 2008 18:04:38 +0000 Subject: [PATCH] - Removed cart icon from ViewCart macro. - Updated WebGUI::Shop::PayDriver::processTransaction() to accept a transaction as a param. --- docs/changelog/7.x.x.txt | 3 +++ lib/WebGUI/Macro/ViewCart.pm | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 93d435de6..dbf04e12d 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -10,6 +10,9 @@ - added a new permission denied page for version tag approval - fixed: Thingy list type form elements do not support key/value pairs (SDH Consulting Group) + - Removed cart icon from ViewCart macro. + - Updated WebGUI::Shop::PayDriver::processTransaction() to accept a + transaction as a param. - fixed: Select Slider borked in Thingy (SDH Consulting Group) - fixed: Shortcuts includes HTML head data twice - fixed: DataForm entry table isn't properly indexed diff --git a/lib/WebGUI/Macro/ViewCart.pm b/lib/WebGUI/Macro/ViewCart.pm index e72815ff6..086521a18 100644 --- a/lib/WebGUI/Macro/ViewCart.pm +++ b/lib/WebGUI/Macro/ViewCart.pm @@ -40,12 +40,12 @@ sub process { return $url; } elsif ($text) { - # us text specified + # use text specified } else { $text = WebGUI::International->new($session,"Shop")->get("view cart"); } - return ''.$text.' '.$text.''; + return ''.$text.''; } 1;