From 0baa90c2104d49621af9b5e2e34a8240a5c50dc3 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Fri, 30 Oct 2009 16:37:37 -0600 Subject: [PATCH] These constants may not be available at load time - use real values instead --- imp/lib/UI/Compose.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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: ""', -- 2.11.0