Form action must be 'post' not 'POST'
This commit is contained in:
parent
7233e89be6
commit
1fc03ba63a
@ -66,7 +66,7 @@ class Form extends Widget
|
|||||||
$this->out->elementStart('form',
|
$this->out->elementStart('form',
|
||||||
array('id' => $this->id(),
|
array('id' => $this->id(),
|
||||||
'class' => $this->formClass(),
|
'class' => $this->formClass(),
|
||||||
'method' => 'POST',
|
'method' => 'post',
|
||||||
'action' => $this->action()));
|
'action' => $this->action()));
|
||||||
$this->out->elementStart('fieldset');
|
$this->out->elementStart('fieldset');
|
||||||
$this->formLegend();
|
$this->formLegend();
|
||||||
|
Loading…
Reference in New Issue
Block a user