fix - Wiki Page not added to config

This commit is contained in:
Roy Johnson 2006-12-10 23:08:20 +00:00
parent 577c6fb34a
commit e06de9f9cc
2 changed files with 8 additions and 3 deletions

View file

@ -12,6 +12,7 @@
Activities and tests. Activities and tests.
Added tests for File and Image assets to verify that this happens correctly. Added tests for File and Image assets to verify that this happens correctly.
- fix - Unable to add EventsCalendar - fix - Unable to add EventsCalendar
- fix - Wiki Page not added to config
7.3.0 7.3.0

View file

@ -21,11 +21,17 @@ my $quiet; # this line required
my $session = start(); # this line required my $session = start(); # this line required
cleanupEventsCalendar($session); cleanupEventsCalendar($session);
addWikiPage($session);
finish($session); # this line required finish($session); # this line required
#-------------------------------------------------
sub addWikiPage {
my $session = shift;
$session->config->addToArray("assetContainers","WebGUI::Asset::WikiPage");
}
##------------------------------------------------- #-------------------------------------------------
sub cleanupEventsCalendar { sub cleanupEventsCalendar {
my $session = shift; my $session = shift;
print "\tRemoving the rest of the old EventsCalendar wobject\n" unless ($quiet); print "\tRemoving the rest of the old EventsCalendar wobject\n" unless ($quiet);
@ -33,8 +39,6 @@ sub cleanupEventsCalendar {
unlink("../../lib/WebGUI/i18n/English/Asset_EventsCalendar.pm"); unlink("../../lib/WebGUI/i18n/English/Asset_EventsCalendar.pm");
unlink("../../lib/WebGUI/Help/Asset_EventsCalendar.pm"); unlink("../../lib/WebGUI/Help/Asset_EventsCalendar.pm");
$session->config->deleteFromArray("assets","WebGUI::Asset::Wobject::EventsCalendar"); $session->config->deleteFromArray("assets","WebGUI::Asset::Wobject::EventsCalendar");
} }
# ---- DO NOT EDIT BELOW THIS LINE ---- # ---- DO NOT EDIT BELOW THIS LINE ----