Add space to Add/Edit Event in the EMS.
Allow the Navigation Asset to set the MIME type of its output. Upgrade script, Wobject code, documentation. Add a new MimeType form element, stolen out of the Snippet and generalized for use.
This commit is contained in:
parent
3f7bffef88
commit
e06331cae9
10 changed files with 175 additions and 16 deletions
|
|
@ -33,6 +33,7 @@ updateDatabaseLinksAndSQLReport();
|
|||
addWorkflow();
|
||||
ipsToCIDR();
|
||||
addDisabletoRichEditor();
|
||||
addNavigationMimeType();
|
||||
|
||||
finish($session); # this line required
|
||||
|
||||
|
|
@ -408,6 +409,12 @@ sub addDisabletoRichEditor {
|
|||
$session->db->write("alter table RichEdit add column disableRichEditor int(11) default '0'");
|
||||
}
|
||||
|
||||
#-------------------------------------------------
|
||||
sub addNavigationMimeType {
|
||||
print "\tAdding Mime Type to Navigations.\n" unless ($quiet);
|
||||
$session->db->write("alter table Navigation add column mimeType varchar(50) default 'text/html'");
|
||||
}
|
||||
|
||||
#-------------------------------------------------
|
||||
sub ipsToCIDR {
|
||||
print "\tTranslating IP addresses to CIDR format.\n" unless ($quiet);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue