fixed: Added the ability to choose which rich editor is used to compose inbox messages

This commit is contained in:
Doug Bell 2009-01-23 20:16:23 +00:00
parent 482dd9ffc5
commit 3837878fff
4 changed files with 44 additions and 0 deletions

View file

@ -6,6 +6,7 @@
- reverted #9386: Gallery: "Image resolutions" issue. This is a feature of the Galley.
- fixed #9236: Survey 2.0 missing hoverhelp
- added: Widget Macro now uses a style, defaulting to the users.
- added ability to select which rich editor is used to compose messages in the inbox
7.6.9
- fixed: ukplayer example is now loaded with swfobject.js released under the MIT licence, see gotcha's and /extras/ukplayer

View file

@ -31,6 +31,7 @@ my $quiet; # this line required
my $session = start(); # this line required
# upgrade functions go here
addRichEditorInboxSetting( $session );
finish($session); # this line required
@ -44,6 +45,16 @@ finish($session); # this line required
# print "DONE!\n" unless $quiet;
#}
#----------------------------------------------------------------------------
# Add ability to select which rich editor for messages between users
sub addRichEditorInboxSetting {
my $session = shift;
print "\tAdding rich editor selection to Inbox... " unless $quiet;
$session->setting->add("inboxRichEditId","PBrichedit000000000001");
print "DONE!\n" unless $quiet;
}
# -------------- DO NOT EDIT BELOW THIS LINE --------------------------------