fixed typo, updated change log to reflect new email properties

This commit is contained in:
JT Smith 2006-04-10 00:17:59 +00:00
parent 47a79bf060
commit 2100a3c992
2 changed files with 2 additions and 1 deletions

View file

@ -26,6 +26,7 @@
- Added a field set grouping mechanism to HTMLForm and TabForm.
- Added save buttons at the top of all the HTML forms for easier access.
- Added archive/unarchive options to CS threads.
- Added a mechanism to send emails to a CS which will accept them as posts.
- Increased the performance of CS Thread viewing by 500%.
- Added a database cache option as an alternative to memcached.
- Removed page caching system and added individual asset caches, because not

View file

@ -189,7 +189,7 @@ sub updateCs {
$session->db->write("alter table Collaboration add column mailPassword varchar(255)");
$session->db->write("alter table Collaboration add column mailAddress varchar(255)");
$session->db->write("alter table Collaboration add column mailPrefix varchar(255)");
$session->db->write("alter table Collaboration add column getMail int not null 0");
$session->db->write("alter table Collaboration add column getMail int not null default 0");
$session->db->write("alter table Collaboration add column getMailInterval int not null default 300");
}