summaryrefslogtreecommitdiff
path: root/lib/form.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-01-15 20:58:46 +0000
committerEvan Prodromou <evan@controlyourself.ca>2009-01-15 20:58:46 +0000
commit1fc03ba63aaa50a1ed4ade38ed449e79bee70ecd (patch)
tree5129509438d9e0531e33e9a0b31fdcf2dea98d7b /lib/form.php
parent7233e89be621c2b9ad80b8a7eb2bc16185596cca (diff)
Form action must be 'post' not 'POST'
Diffstat (limited to 'lib/form.php')
-rw-r--r--lib/form.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/form.php b/lib/form.php
index bd68fb0c5..011d4bfc9 100644
--- a/lib/form.php
+++ b/lib/form.php
@@ -66,7 +66,7 @@ class Form extends Widget
$this->out->elementStart('form',
array('id' => $this->id(),
'class' => $this->formClass(),
- 'method' => 'POST',
+ 'method' => 'post',
'action' => $this->action()));
$this->out->elementStart('fieldset');
$this->formLegend();