diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 5f03debcb..c4a5275d4 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -15,6 +15,8 @@ - fixed #10394: CC Purchases Fail When Variants Contain Trailing Zero(s) - fixed #10332: Matrix: last updated fields = today - fixed Thread subscription groups not cleaned up during purge. + - fixed: Story subtitle is supposed to be a text field, not a text area. + - fixed: Display of short pagination bar when there's less than 1 page of data in StoryArchive 7.7.6 - Added mobile style template. If enabled in settings, will serve alternate style templates diff --git a/docs/upgrades/packages-7.7.7/root_import_storymanager.wgpkg b/docs/upgrades/packages-7.7.7/root_import_storymanager.wgpkg new file mode 100644 index 000000000..e74d78026 Binary files /dev/null and b/docs/upgrades/packages-7.7.7/root_import_storymanager.wgpkg differ diff --git a/lib/WebGUI/Asset/Story.pm b/lib/WebGUI/Asset/Story.pm index c6303a066..c930b161c 100644 --- a/lib/WebGUI/Asset/Story.pm +++ b/lib/WebGUI/Asset/Story.pm @@ -113,7 +113,7 @@ sub definition { defaultValue => '', }, subtitle => { - fieldType => 'textarea', + fieldType => 'text', #label => $i18n->get('subtitle'), #hoverHelp => $i18n->get('subtitle help'), defaultValue => '', @@ -361,7 +361,7 @@ sub getEditForm { name => 'title', value => $form->get('title') || $self->get('title'), } ), - subtitleForm => WebGUI::Form::textarea($session, { + subtitleForm => WebGUI::Form::text($session, { name => 'subtitle', value => $form->get('subtitle') || $self->get('subtitle') } ),