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.'';
+ return ''.$text.'';
}
1;