add email posting without subscription

This commit is contained in:
JT Smith 2006-05-17 20:04:33 +00:00
parent 612f08b37c
commit d089539ddd
7 changed files with 76 additions and 8 deletions

View file

@ -20,6 +20,8 @@
- Added a 2.7% speed increase by precaching i18n messages. This should also
help increase shared memory amongst Apache children. (Matt Wilson)
- fix [ 1488921 ] Help: Commerce, Manage
- Added two new mail posting properties to the collaboration system to get
around a couple of problems clients have brought up.
6.99.0
- Added an Events Management System asset that can help people run

View file

@ -22,9 +22,17 @@ my $session = start(); # this line required
fixTypos($session);
updateTemplates();
csFixes();
finish($session); # this line required
#-------------------------------------------------
sub csFixes {
print "\tFixing CS stuff.\n" unless ($quiet);
$session->db->write("alter table Collaboration add column autoSubscribeToThread int not null default 1");
$session->db->write("alter table Collaboration add column requireSubscriptionForEmailPosting int not null default 1");
}
#-------------------------------------------------
sub updateTemplates {
print "\tFixing template problems\n" unless ($quiet);