Fix bugs in the default story archive template (pagination bar) and

the subtitle in the Story.
This commit is contained in:
Colin Kuskie 2009-05-20 16:18:02 +00:00
parent 8047e7d5f9
commit be4b0dc4d4
3 changed files with 4 additions and 2 deletions

View file

@ -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

View file

@ -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')
} ),