Updated Thingy's edit instructions and search description fields to HTMLAreas

This commit is contained in:
Yung Han Khoe 2008-10-07 07:57:45 +00:00
parent faa9e24344
commit f940752c4f
2 changed files with 9 additions and 3 deletions

View file

@ -22,6 +22,8 @@
Group) Group)
- fixed: Cross site scripting issue on operation pages - fixed: Cross site scripting issue on operation pages
- fixed: Search asset shows blank page after searching - fixed: Search asset shows blank page after searching
- rfe: Updated Thingy's edit instructions and search description fields to
HTMLAreas (SDH Consulting Group)
7.6.0 7.6.0
- added: users may now customize the post received page for the CS - added: users may now customize the post received page for the CS

View file

@ -630,7 +630,7 @@ sub getEditFieldForm {
value=>$defaultValue, value=>$defaultValue,
subtext=>'<br />'.$i18n->get('default value subtext'), subtext=>'<br />'.$i18n->get('default value subtext'),
width=>200, width=>200,
height=>60, height=>40,
resizable=>0, resizable=>0,
}); });
$f->raw($self->getHtmlWithModuleWrapper($dialogPrefix."_defaultValue_module",$defaultValueForm, $f->raw($self->getHtmlWithModuleWrapper($dialogPrefix."_defaultValue_module",$defaultValueForm,
@ -1644,12 +1644,14 @@ sub www_editThing {
-value => $properties{editScreenTitle}, -value => $properties{editScreenTitle},
-maxlength => 64, -maxlength => 64,
); );
$tab->textarea( $tab->HTMLArea(
-name => 'editInstructions', -name => 'editInstructions',
-label => $i18n->get('edit instructions label'), -label => $i18n->get('edit instructions label'),
-hoverHelp => $i18n->get('edit instructions description'), -hoverHelp => $i18n->get('edit instructions description'),
-value => $properties{editInstructions}, -value => $properties{editInstructions},
-maxlength => 64, -maxlength => 64,
-width => 300,
-height => 200,
); );
$tab->group( $tab->group(
-name=> "groupIdAdd", -name=> "groupIdAdd",
@ -1765,12 +1767,14 @@ sub www_editThing {
-maxlength => 64, -maxlength => 64,
); );
$tab->textarea( $tab->HTMLArea(
-name => 'searchDescription', -name => 'searchDescription',
-label => $i18n->get('search description label'), -label => $i18n->get('search description label'),
-hoverHelp => $i18n->get('search description description'), -hoverHelp => $i18n->get('search description description'),
-value => $properties{searchDescription}, -value => $properties{searchDescription},
-maxlength => 64, -maxlength => 64,
-width => 300,
-height => 200,
); );
$tab->group( $tab->group(