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 *