Index: textarea.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/webform/components/textarea.inc,v
retrieving revision 1.12.2.11
diff -u -r1.12.2.11 textarea.inc
--- textarea.inc	14 Feb 2009 19:57:38 -0000	1.12.2.11
+++ textarea.inc	14 Feb 2009 20:06:59 -0000
@@ -102,7 +102,7 @@
     '#rows'          => !empty($component['extra']['rows']) ? $component['extra']['rows'] : 5,
     '#cols'          => !empty($component['extra']['cols']) ? $component['extra']['cols'] : 60,
     '#attributes'    => $component['extra']['attributes'],
-    '#resizable'     => $component['extra']['resizable'],
+    '#resizable'     => (bool) $component['extra']['resizable'], // MUST be FALSE to disable.
     '#prefix'        => '<div class="webform-component-'. $component['type'] .'" id="webform-component-'. $component['form_key'] .'">',
     '#suffix'        => '</div>',
   );
