From 132c3fe8e2e67e99498e677b808d906342ddce5c Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Sat, 14 Jun 2008 03:48:17 +0000 Subject: [PATCH] fix a few typos in the upgrade script that I added --- docs/upgrades/upgrade_7.5.12-7.5.13.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/upgrades/upgrade_7.5.12-7.5.13.pl b/docs/upgrades/upgrade_7.5.12-7.5.13.pl index da0dbde11..f7246bbc8 100644 --- a/docs/upgrades/upgrade_7.5.12-7.5.13.pl +++ b/docs/upgrades/upgrade_7.5.12-7.5.13.pl @@ -38,7 +38,7 @@ finish($session); # this line required #---------------------------------------------------------------------------- sub fixShop { my $session = shift; - print "\tFixing Shop properties" unless $quiet; + print "\tFixing Shop properties." unless $quiet; my $db = $session->db; $db->write("update EventManagementSystem set registrationStaffGroupId='3' where registrationStaffGroupId=''"); my ($driverId) = $db->quickScalar("select paymentGatewayId from paymentGateway where className='WebGUI::Shop::PayDriver::ITransact'"); @@ -49,6 +49,7 @@ sub fixShop { #---------------------------------------------------------------------------- sub addSelectableProfileTemplates { my $session = shift; + print "\tAdd selectable user profile templates." unless $quiet; my $tmpl = $session->setting->get('viewUserProfileTemplate') || 'PBtmpl0000000000000052'; $session->setting->remove('viewUserProfileTemplate'); $session->setting->add('viewUserProfileTemplate', $tmpl); @@ -60,7 +61,7 @@ sub addSelectableProfileTemplates { #---------------------------------------------------------------------------- sub addCouponThankYouMessage { my $session = shift; - print "\Adding Thank You Message to Coupon table... " unless $quiet; + print "\tAdding Thank You Message to Coupon table... " unless $quiet; $session->db->write('alter table FlatDiscount add column thankYouMessage mediumtext'); }