diff --git a/library/Icinga/Web/Form.php b/library/Icinga/Web/Form.php index 84d17bbbf..d291a7c63 100644 --- a/library/Icinga/Web/Form.php +++ b/library/Icinga/Web/Form.php @@ -16,13 +16,6 @@ use Icinga\Exception\ProgrammingError; */ class Form extends Zend_Form { - /** - * The title of this form - * - * @var string - */ - protected $title; - /** * The view script to use when rendering this form * @@ -64,29 +57,6 @@ class Form extends Zend_Form */ protected $tokenElementName = 'CSRFToken'; - /** - * Set this form's title - * - * @param string $title The title to set - * - * @return self - */ - public function setTitle($title) - { - $this->title = $title; - return $this; - } - - /** - * Return this form's title - * - * @return string - */ - public function getTitle() - { - return $this->title; - } - /** * Set the view script to use when rendering this form *