mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-06-08 16:12:43 -04:00
Form: Add the Description decorator by default for native title support
This commit is contained in:
parent
cbd061aa41
commit
ad288c08ca
1 changed files with 6 additions and 1 deletions
|
|
@ -913,7 +913,12 @@ class Form extends Zend_Form
|
|||
->addDecorator('FormDescriptions')
|
||||
->addDecorator('FormElements')
|
||||
//->addDecorator('HtmlTag', array('tag' => 'dl', 'class' => 'zend_form'))
|
||||
->addDecorator('Form');
|
||||
->addDecorator('Form')
|
||||
->addDecorator('Description', array(
|
||||
'placement' => 'prepend',
|
||||
'class' => 'form-title',
|
||||
'tag' => 'h1'
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue