Index: CHANGELOG.txt =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/wysiwyg/CHANGELOG.txt,v retrieving revision 1.234 diff -u -p -r1.234 CHANGELOG.txt --- CHANGELOG.txt 25 Dec 2010 19:01:52 -0000 1.234 +++ CHANGELOG.txt 25 Dec 2010 19:12:21 -0000 @@ -16,6 +16,7 @@ Wysiwyg 7.x-2.x, xxxx-xx-xx Wysiwyg 6.x-2.x, xxxx-xx-xx --------------------------- +#1007066 by TwoD, penguin25: Fixed CKEditor ignores resizable option. #613944 by TwoD, sun: Fixed data.node not always present in CKEditor. Index: editors/ckeditor.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/wysiwyg/editors/ckeditor.inc,v retrieving revision 1.10 diff -u -p -r1.10 ckeditor.inc --- editors/ckeditor.inc 19 Dec 2010 23:26:56 -0000 1.10 +++ editors/ckeditor.inc 25 Dec 2010 19:11:35 -0000 @@ -184,7 +184,8 @@ function wysiwyg_ckeditor_settings($edit $settings['language'] = $config['language']; } if (isset($config['resizing'])) { - $settings['resize_enabled'] = $config['resizing']; + // CKEditor tests "!== false", so ensure it is a Boolean. + $settings['resize_enabled'] = (bool) $config['resizing']; } if (isset($config['toolbar_loc'])) { $settings['toolbarLocation'] = $config['toolbar_loc'];