diff --git a/docs/upgrades/packages-7.7.3/root_import_storymanager.wgpkg b/docs/upgrades/packages-7.7.3/root_import_storymanager.wgpkg index 1426c8861..390755fc9 100644 Binary files a/docs/upgrades/packages-7.7.3/root_import_storymanager.wgpkg and b/docs/upgrades/packages-7.7.3/root_import_storymanager.wgpkg differ diff --git a/lib/WebGUI/Asset/Story.pm b/lib/WebGUI/Asset/Story.pm index e7e5c987c..beeaff2b8 100644 --- a/lib/WebGUI/Asset/Story.pm +++ b/lib/WebGUI/Asset/Story.pm @@ -319,11 +319,15 @@ sub getEditForm { formTitle => $isNew ? $i18n->get('add a story','Asset_StoryArchive') : $i18n->get('editing','Asset_WikiPage').' '.$title, + headlineForm => WebGUI::Form::text($session, { + name => 'headline', + value => $form->get('headline') || $self->get('headline'), + } ), titleForm => WebGUI::Form::text($session, { name => 'title', value => $form->get('title') || $self->get('title'), } ), - subTitleForm => WebGUI::Form::textarea($session, { + subtitleForm => WebGUI::Form::textarea($session, { name => 'subtitle', value => $form->get('subtitle') || $self->get('subtitle') } ), diff --git a/lib/WebGUI/Help/Asset_Story.pm b/lib/WebGUI/Help/Asset_Story.pm index 208fb127d..312e2be39 100644 --- a/lib/WebGUI/Help/Asset_Story.pm +++ b/lib/WebGUI/Help/Asset_Story.pm @@ -19,6 +19,7 @@ our $HELP = { { name => 'formFooter', required => 1 }, { name => 'titleForm', }, + { name => 'headlineForm', }, { name => 'subtitleForm', }, { name => 'bylineForm', }, { name => 'locationForm', }, diff --git a/lib/WebGUI/i18n/English/Asset_Story.pm b/lib/WebGUI/i18n/English/Asset_Story.pm index bf7f6f569..e8c9b2da2 100644 --- a/lib/WebGUI/i18n/English/Asset_Story.pm +++ b/lib/WebGUI/i18n/English/Asset_Story.pm @@ -154,6 +154,11 @@ our $I18N = { lastUpdated => 0, }, + 'headlineForm' => { + message => q|Form for the user to enter a headline for this story.|, + lastUpdated => 0, + }, + 'subtitleForm' => { message => q|Form for the user to enter a subtitle for this story.|, lastUpdated => 0,