diff -ruN wysiwyg_original/editors/ckeditor.inc wysiwyg/editors/ckeditor.inc --- wysiwyg_original/editors/ckeditor.inc 2010-12-19 23:27:09.000000000 +0000 +++ wysiwyg/editors/ckeditor.inc 2010-12-25 00:12:15.000000000 +0000 @@ -184,7 +184,8 @@ $settings['language'] = $config['language']; } if (isset($config['resizing'])) { - $settings['resize_enabled'] = $config['resizing']; + // ckeditor uses "!== false" to test this, so we must ensure it's a boolean, and not an integer + $settings['resize_enabled'] = ($config['resizing'] ? true : false); } if (isset($config['toolbar_loc'])) { $settings['toolbarLocation'] = $config['toolbar_loc'];