From: Evan Prodromou Date: Thu, 15 Jan 2009 20:58:46 +0000 (+0000) Subject: Form action must be 'post' not 'POST' X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1fc03ba63aaa50a1ed4ade38ed449e79bee70ecd;p=quix0rs-gnu-social.git Form action must be 'post' not 'POST' --- 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();