Skip to content

Commit

Permalink
Disable checking whether a form is sent when form identification is d…
Browse files Browse the repository at this point in the history
…isabled

refs #5525
  • Loading branch information
Johannes Meyer committed Sep 9, 2014
1 parent 34bbe65 commit c8ce108
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Icinga/Web/Form.php
Expand Up @@ -490,7 +490,7 @@ public function handleRequest(Request $request = null)
}

$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)
Expand Down

0 comments on commit c8ce108

Please sign in to comment.