Fix improper form submission

refs #5525
This commit is contained in:
Johannes Meyer 2014-08-12 10:41:19 +02:00
parent f23bf912eb
commit 4b1169c0a1
1 changed files with 7 additions and 0 deletions

View File

@ -7,6 +7,7 @@ namespace Icinga\Web;
use LogicException;
use Zend_Form;
use Zend_View_Interface;
use Icinga\Application\Icinga;
use Icinga\Web\Session;
use Icinga\Web\Form\Decorator\HelpText;
use Icinga\Web\Form\Decorator\ElementWrapper;
@ -131,6 +132,12 @@ class Form extends Zend_Form
public function create(array $formData = array())
{
if (false === $this->created) {
if ($this->getAction() === '') {
// We MUST set an action as JS gets confused otherwise, if
// this form is being displayed in an additional column
$this->setAction(Icinga::app()->getFrontController()->getRequest()->getRequestUri());
}
$this->addElements($this->createElements($formData));
$this->addCsrfToken()->addSubmitButton();
$this->created = true;