From b1d0c12df3988a7b2a85f8d2d8b36aac2f04f0ae Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Mon, 2 Mar 2015 18:24:41 +0100 Subject: [PATCH] Form: Introduce setTitle() as alias for Zend_Form::setDescription() --- library/Icinga/Web/Form.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/library/Icinga/Web/Form.php b/library/Icinga/Web/Form.php index 0ec502aa9..2cce16f76 100644 --- a/library/Icinga/Web/Form.php +++ b/library/Icinga/Web/Form.php @@ -956,6 +956,20 @@ class Form extends Zend_Form return $name; } + /** + * Set form description + * + * Alias for Zend_Form::setDescription(). + * + * @param string $value + * + * @return Form + */ + public function setTitle($value) + { + return $this->setDescription($value); + } + /** * Return the request associated with this form *