diff --git a/docs/upgrades/upgrade_6.6.0-6.6.1.pl b/docs/upgrades/upgrade_6.6.0-6.6.1.pl
index 66b5ef896..27c7d3f5d 100644
--- a/docs/upgrades/upgrade_6.6.0-6.6.1.pl
+++ b/docs/upgrades/upgrade_6.6.0-6.6.1.pl
@@ -20,7 +20,9 @@ WebGUI::Session::open("../..",$configFile);
#--------------------------------------------
print "\tUpdating Commerce Templates\n" unless ($quiet);
-my $template = ' ·
+my $template = ' ·
+ ·
+
diff --git a/lib/WebGUI/Operation/Commerce.pm b/lib/WebGUI/Operation/Commerce.pm
index 67df52dcc..f1e0db519 100644
--- a/lib/WebGUI/Operation/Commerce.pm
+++ b/lib/WebGUI/Operation/Commerce.pm
@@ -180,6 +180,8 @@ sub www_checkoutConfirm {
$var{'changePayment.label'} = $i18n->get('change payment gateway');
$var{'changeShipping.url'} = WebGUI::URL::page('op=selectShippingMethod');
$var{'changeShipping.label'} = $i18n->get('change shipping method');
+ $var{'viewShoppingCart.url'} = WebGUI::URL::page('op=viewCart');
+ $var{'viewShoppingCart.label'} = $i18n->get('view shopping cart');
return WebGUI::Operation::Shared::userStyle(WebGUI::Asset::Template->new($session{setting}{commerceConfirmCheckoutTemplateId})->process(\%var));
}
diff --git a/lib/WebGUI/i18n/English/Commerce.pm b/lib/WebGUI/i18n/English/Commerce.pm
index ce23b1929..8155b1f8c 100755
--- a/lib/WebGUI/i18n/English/Commerce.pm
+++ b/lib/WebGUI/i18n/English/Commerce.pm
@@ -485,6 +485,12 @@ A radio button tied to this plugin.
lastUpdated => 0,
context => q|List transactions label|
},
+ 'view shopping cart' => {
+ message => q|View shopping cart|,
+ lastUpdated => 0,
+ context => q|The label for the view shopping cart link in the confirm checkout screen.|
+ },
+
};
1;