? .cvsignore
? ckeditor-692558.patch
Index: ckeditor.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ckeditor/ckeditor.module,v
retrieving revision 1.4.2.9
diff -u -p -r1.4.2.9 ckeditor.module
--- ckeditor.module	14 Jan 2010 08:50:08 -0000	1.4.2.9
+++ ckeditor.module	22 Jan 2010 15:02:50 -0000
@@ -767,10 +767,10 @@ function ckeditor_process_textarea($elem
         preg_match_all('#(config\.)?(\w+)[ ]*=(.+)[;]?#is', $l, $matches);
         if (!empty($matches[0])) {
           $value=trim($matches[3][0], " ;'\"\n\r\t\0\x0B");
-          if ($value=='true') {
+          if ( strcasecmp($value, 'true') ) {
             $value=TRUE;
           }
-          if ($value=='FALSE') {
+          if ( strcasecmp($value, 'false') ) {
             $value=FALSE;
           }
           $settings[$textarea_id][$matches[2][0]]=$value;
