From fc2b5a0d10c37a120d0fc3bf48c0d2ae4de31b88 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Tue, 10 Jun 2008 05:53:37 +0000 Subject: [PATCH] add EventManagementSystem_product to the list of template namespaces that are deleted --- docs/upgrades/upgrade_7.5.10-7.5.11.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/upgrades/upgrade_7.5.10-7.5.11.pl b/docs/upgrades/upgrade_7.5.10-7.5.11.pl index 028b0a134..e0af04bf2 100644 --- a/docs/upgrades/upgrade_7.5.10-7.5.11.pl +++ b/docs/upgrades/upgrade_7.5.10-7.5.11.pl @@ -362,7 +362,7 @@ sub upgradeEMS { print "\tUpgrading Event Manager\n" unless ($quiet); my $db = $session->db; print "\t\tGetting rid of old templates.\n" unless ($quiet); - foreach my $namespace (qw(EventManagementSystem EventManagementSystem_checkout EventManagementSystem_managePurchas EventManagementSystem_viewPurchase EventManagementSystem_search emsbadgeprint emsticketprint)) { + foreach my $namespace (qw(EventManagementSystem EventManagementSystem_checkout EventManagementSystem_managePurchas EventManagementSystem_product EventManagementSystem_viewPurchase EventManagementSystem_search emsbadgeprint emsticketprint)) { my $templates = $db->read("select assetId from template where namespace=?",[$namespace]); while (my ($id) = $templates->array) { my $asset = WebGUI::Asset->new($session, $id,'WebGUI::Asset::Template');