From 850404ad3b95270e75341b2383369b2851e2f26e Mon Sep 17 00:00:00 2001 From: JT Smith Date: Tue, 15 Feb 2005 15:02:27 +0000 Subject: [PATCH] fixed a typo --- docs/upgrades/upgrade_6.2.11-6.3.0.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/upgrades/upgrade_6.2.11-6.3.0.pl b/docs/upgrades/upgrade_6.2.11-6.3.0.pl index 74387bb21..2ede9d41d 100644 --- a/docs/upgrades/upgrade_6.2.11-6.3.0.pl +++ b/docs/upgrades/upgrade_6.2.11-6.3.0.pl @@ -30,7 +30,7 @@ my $forums = WebGUI::SQL->read("select forumId, threadTemplateId, postTemplateId while (my ($forumId, $threadTemplateId, $postTemplateId) = $forums->array) { my $key = "Thread ".$threadTemplateId." | ".$postTemplateId; unless (exists $threadTemplates{$key}) { - my ($threadTemplate) = WebGUI::SQL->quickArray("select template from template where namepsace='Forum/Thread' and templateId=".quote($threadTemplateId)); + my ($threadTemplate) = WebGUI::SQL->quickArray("select template from template where namespace='Forum/Thread' and templateId=".quote($threadTemplateId)); my ($postTemplate) = WebGUI::SQL->quickArray("select template from template where namespace='Forum/Post' and templateId=".quote($postTemplateId)); $threadTemplate =~ s/\/$postTemplate/ixsg; $threadTemplates{$key} = $threadTemplate;