]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/form.php
Updated Cloudy theme default avatars and minor CSS
[quix0rs-gnu-social.git] / lib / form.php
index bd68fb0c5f69cecbf000c4c1fe2e00339d83ad0b..5317df4715946e9638a1b32905f603f3652ca299 100644 (file)
@@ -65,8 +65,8 @@ class Form extends Widget
     {
         $this->out->elementStart('form',
                                  array('id' => $this->id(),
-                                      'class' => $this->formClass(),
-                                       'method' => 'POST',
+                                       'class' => $this->formClass(),
+                                       'method' => 'post',
                                        'action' => $this->action()));
         $this->out->elementStart('fieldset');
         $this->formLegend();
@@ -88,7 +88,6 @@ class Form extends Widget
         $this->out->hidden('token', common_session_token());
     }
 
-
     /**
      * Name of the form
      *
@@ -101,7 +100,6 @@ class Form extends Widget
     {
     }
 
-
     /**
      * Visible or invisible data elements
      *
@@ -154,7 +152,7 @@ class Form extends Widget
     function action()
     {
     }
-    
+
     /**
      * Class of the form.
      *
@@ -163,6 +161,6 @@ class Form extends Widget
 
     function formClass()
     {
-       return 'form';
+        return 'form';
     }
 }