From 1fc03ba63aaa50a1ed4ade38ed449e79bee70ecd Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 15 Jan 2009 20:58:46 +0000 Subject: [PATCH] Form action must be 'post' not 'POST' --- lib/form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/form.php b/lib/form.php index bd68fb0c5f..011d4bfc9b 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();