]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Whitespace changes in form.php
authorEvan Prodromou <evan@controlyourself.ca>
Fri, 23 Jan 2009 01:58:18 +0000 (02:58 +0100)
committerEvan Prodromou <evan@controlyourself.ca>
Fri, 23 Jan 2009 01:58:18 +0000 (02:58 +0100)
lib/form.php

index 011d4bfc9b9b440a9dde51cb5cd55f54eb05d035..5317df4715946e9638a1b32905f603f3652ca299 100644 (file)
@@ -65,7 +65,7 @@ class Form extends Widget
     {
         $this->out->elementStart('form',
                                  array('id' => $this->id(),
-                                      'class' => $this->formClass(),
+                                       'class' => $this->formClass(),
                                        'method' => 'post',
                                        'action' => $this->action()));
         $this->out->elementStart('fieldset');
@@ -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';
     }
 }