Make a synopsis field available to the Event edit form. Fixes bug #11190
This commit is contained in:
parent
37689843a3
commit
baf9f3c700
4 changed files with 14 additions and 0 deletions
|
|
@ -34,6 +34,7 @@
|
|||
- added: print remaining tickets feature to EMS
|
||||
- fixed #11188: Incoherence in Navigation edit form
|
||||
- fixed #11189: Controls variable missing in image asset in AssetProxy
|
||||
- fixed #11190: event tmpl_var in help but not available
|
||||
|
||||
7.8.2
|
||||
- Added scheduled vendor payout workflow activity. (Special thanks to Martin @ Oqapi)
|
||||
|
|
|
|||
|
|
@ -2063,6 +2063,13 @@ sub www_edit {
|
|||
size => 22,
|
||||
});
|
||||
|
||||
# synopsis
|
||||
$var->{"formSynopsis"}
|
||||
= WebGUI::Form::textarea($session, {
|
||||
name => "synopsis",
|
||||
value => $form->process("synopsis") || $self->get("synopsis"),
|
||||
});
|
||||
|
||||
# Group to View
|
||||
$var->{"formGroupIdView"}
|
||||
= WebGUI::Form::Group($session, {
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@ our $HELP = {
|
|||
'required' => 1,
|
||||
},
|
||||
{ 'name' => 'formMenuTitle', },
|
||||
{ 'name' => 'formSynopsis', },
|
||||
{ 'name' => 'formLocation', },
|
||||
{ 'name' => 'formDescription', },
|
||||
{ 'name' => 'formGroupToView', },
|
||||
|
|
|
|||
|
|
@ -35,6 +35,11 @@ our $I18N = {
|
|||
lastUpdated => 1171067211,
|
||||
},
|
||||
|
||||
'formSynopsis' => {
|
||||
message => q|HTML form for entering or editing the Event Synopsis.|,
|
||||
lastUpdated => 1171067211,
|
||||
},
|
||||
|
||||
'formLocation' => {
|
||||
message => q|HTML form for entering or editing the Event Location.|,
|
||||
lastUpdated => 1171067211,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue