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

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