Removed the rich editor for the edit fields, cuz they weren't supposed to be there.

This commit is contained in:
JT Smith 2002-12-11 02:33:49 +00:00
parent 62d51f20aa
commit 547e10affd
2 changed files with 2 additions and 2 deletions

View file

@ -94,7 +94,7 @@ sub www_editStyle {
$f->hidden("sid",$session{form}{sid});
$f->readOnly($session{form}{sid},WebGUI::International::get(380));
$f->text("name",WebGUI::International::get(151),$style{name});
$f->HTMLArea("body",WebGUI::International::get(501),$style{body},'','','',(5+$session{setting}{textAreaRows}));
$f->textarea("body",WebGUI::International::get(501),$style{body},'','','',(5+$session{setting}{textAreaRows}));
$f->textarea("styleSheet",WebGUI::International::get(154),$style{styleSheet},'','','',(5+$session{setting}{textAreaRows}));
$f->submit;
$output .= $f->print;

View file

@ -117,7 +117,7 @@ sub www_editTemplate {
}
$f->hidden("tid",$session{form}{tid});
$f->text("name",WebGUI::International::get(528),$template{name});
$f->HTMLArea(
$f->textarea(
-name=>"template",
-label=>WebGUI::International::get(504),
-value=>$template{template},