These constants may not be available at load time - use real values instead
authorMichael M Slusarz <slusarz@curecanti.org>
Fri, 30 Oct 2009 22:37:37 +0000 (16:37 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Fri, 30 Oct 2009 22:37:37 +0000 (16:37 -0600)
imp/lib/UI/Compose.php

index 885ebbb..0efbbe5 100644 (file)
@@ -180,8 +180,10 @@ class IMP_UI_Compose
         $config = array(
             /* To more closely match "normal" textarea behavior, send <BR> on
              * enter instead of <P>. */
-            '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: ""',