Index: openacs-4/packages/xowiki/tcl/xowiki-form-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/xowiki-form-procs.tcl,v diff -u -r1.84 -r1.85 --- openacs-4/packages/xowiki/tcl/xowiki-form-procs.tcl 1 Aug 2007 15:14:52 -0000 1.84 +++ openacs-4/packages/xowiki/tcl/xowiki-form-procs.tcl 9 Aug 2007 18:05:53 -0000 1.85 @@ -62,7 +62,11 @@ # check first if we have widget_specs. # TODO: this part is likely to be removed in the future. - set s [$data get_rich_text_spec $__field ""] + if {[$data istype ::xowiki::PlainPage] && $__field eq "text"} { + set s "" + } else { + set s [$data get_rich_text_spec $__field ""] + } if {$s ne ""} { set __spec $s set __wspec [lindex $__spec 0]