Replace description decorator through help decorator

refs #7696
resolves #7696
This commit is contained in:
Alexander Fuhr 2014-11-18 14:58:54 +01:00
parent 4a4fbaee8e
commit 38ef33276a
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ class Form extends Zend_Form
public static $defaultElementDecorators = array( public static $defaultElementDecorators = array(
array('ViewHelper', array('separator' => '')), array('ViewHelper', array('separator' => '')),
array('Errors', array('separator' => '')), array('Errors', array('separator' => '')),
array('Description', array('tag' => 'span', 'class' => 'description', 'separator' => '')), array('Help'),
array('Label', array('separator' => '')), array('Label', array('separator' => '')),
array('HtmlTag', array('tag' => 'div', 'class' => 'element')) array('HtmlTag', array('tag' => 'div', 'class' => 'element'))
); );