From 38ef33276a608abed515f929f0b9e6814d79e549 Mon Sep 17 00:00:00 2001 From: Alexander Fuhr Date: Tue, 18 Nov 2014 14:58:54 +0100 Subject: [PATCH] Replace description decorator through help decorator refs #7696 resolves #7696 --- library/Icinga/Web/Form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Icinga/Web/Form.php b/library/Icinga/Web/Form.php index 854a6fa4a..1627cfe48 100644 --- a/library/Icinga/Web/Form.php +++ b/library/Icinga/Web/Form.php @@ -109,7 +109,7 @@ class Form extends Zend_Form public static $defaultElementDecorators = array( array('ViewHelper', array('separator' => '')), array('Errors', array('separator' => '')), - array('Description', array('tag' => 'span', 'class' => 'description', 'separator' => '')), + array('Help'), array('Label', array('separator' => '')), array('HtmlTag', array('tag' => 'div', 'class' => 'element')) );