From 44a9755cce8c1cbfbe70bad430b9d0348f534e87 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Thu, 30 Jul 2015 10:09:44 +0200 Subject: [PATCH] QuickForm: no label for hints --- library/Director/Web/Form/QuickForm.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Director/Web/Form/QuickForm.php b/library/Director/Web/Form/QuickForm.php index 99bf7727..dcecf4c6 100644 --- a/library/Director/Web/Form/QuickForm.php +++ b/library/Director/Web/Form/QuickForm.php @@ -82,7 +82,7 @@ abstract class QuickForm extends Zend_Form { if (false !== ($label = $this->getSubmitLabel())) { $this->addElement('submit', $label); - $this->getElement($label)->setLabel($label); + $this->getElement($label)->setLabel($label)->removeDecorator('Label'); } }