]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Form action must be 'post' not 'POST'
authorEvan Prodromou <evan@controlyourself.ca>
Thu, 15 Jan 2009 20:58:46 +0000 (20:58 +0000)
committerEvan Prodromou <evan@controlyourself.ca>
Thu, 15 Jan 2009 20:58:46 +0000 (20:58 +0000)
lib/form.php

index bd68fb0c5f69cecbf000c4c1fe2e00339d83ad0b..011d4bfc9b9b440a9dde51cb5cd55f54eb05d035 100644 (file)
@@ -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();