From c8ce1088c92dd4071188059c7047d2257953bced Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 9 Sep 2014 09:30:33 +0200 Subject: [PATCH] Disable checking whether a form is sent when form identification is disabled refs #5525 --- 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 e4b292647..ba15f8c41 100644 --- a/library/Icinga/Web/Form.php +++ b/library/Icinga/Web/Form.php @@ -490,7 +490,7 @@ class Form extends Zend_Form } $formData = $this->getRequestData($request); - if ($this->wasSent($formData)) { + if ($this->getUidDisabled() || $this->wasSent($formData)) { $this->populate($formData); // Necessary to get isSubmitted() to work if (! $this->getSubmitLabel() || $this->isSubmitted()) { if ($this->isValid($formData)