fix: Couple Calendar fixes. Some Calendar code formatting changes

This commit is contained in:
Doug Bell 2007-01-31 15:13:36 +00:00
parent 32db4c5bf3
commit dd33c3e36f
4 changed files with 1285 additions and 1274 deletions

View file

@ -18,6 +18,10 @@
require that it be used.
- fix: Image in trash though visible in article
- fix: Direct 6.8.10-7.2+ Upgrade Problem
- fix: Calendar feeds lastUpdated field only shows the year
- fix: Calendar feeds do not work
- fix: Sharing information between Calendars on the same server is now less
kludgy
- fix: Adding tasks to project manager has long load time
- fix: Project manager tasks get cached (not clearing) when bouncing between edit and new

View file

@ -21,6 +21,8 @@ my $quiet; # this line required
my $session = start(); # this line required
# upgrade functions go here
fixCalendarFeedsLastUpdatedField();
finish($session); # this line required
@ -33,6 +35,13 @@ finish($session); # this line required
#}
##-------------------------------------------------
sub fixCalendarFeedsLastUpdatedField {
my $session = shift;
print "\tFixing Calendar Feeds lastUpdated field.\n" unless ($quiet);
$session->db->write("alter table Calendar_feeds modify column lastUpdated datetime");
}
# ---- DO NOT EDIT BELOW THIS LINE ----