From: Michael M Slusarz Date: Fri, 30 Oct 2009 22:37:37 +0000 (-0600) Subject: These constants may not be available at load time - use real values instead X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=0baa90c2104d49621af9b5e2e34a8240a5c50dc3;p=horde.git These constants may not be available at load time - use real values instead --- diff --git a/imp/lib/UI/Compose.php b/imp/lib/UI/Compose.php index 885ebbbff..0efbbe556 100644 --- a/imp/lib/UI/Compose.php +++ b/imp/lib/UI/Compose.php @@ -180,8 +180,10 @@ class IMP_UI_Compose $config = array( /* To more closely match "normal" textarea behavior, send
on * enter instead of

. */ - 'enterMode: CKEDITOR.ENTER_BR', - 'shiftEnterMode: CKEDITOR.ENTER_P', + // CKEDITOR.ENTER_BR + 'enterMode: 2', + // CKEDITOR.ENTER_P + 'shiftEnterMode: 1', /* Don't load the config.js file. */ 'customConfig: ""',