Fixed 7.3.0-7.3.1 upgrade script so that multisite upgrades don't fail

This commit is contained in:
Doug Bell 2007-01-24 23:39:25 +00:00
parent 28d9659031
commit 0136abfbb9
2 changed files with 2 additions and 9 deletions

View file

@ -2,6 +2,8 @@
- Fixed a template variable rewriting problem with Template Toolkit.
- Fixed a bug with dealing with CS posts via email where
multipart/alternative messages would cause a blank post.
- Fixed the 7.3.0-7.3.1 upgrade script so it doesn't cause multi-site
upgrades to fail.
7.3.6
- fix: Checkbox is no longer available when creating custom profile fields

View file

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