Whitespace changes in form.php

This commit is contained in:
Evan Prodromou 2009-01-23 02:58:18 +01:00
parent b9b6e491f4
commit 0e1ea38319

View File

@ -65,7 +65,7 @@ class Form extends Widget
{ {
$this->out->elementStart('form', $this->out->elementStart('form',
array('id' => $this->id(), array('id' => $this->id(),
'class' => $this->formClass(), 'class' => $this->formClass(),
'method' => 'post', 'method' => 'post',
'action' => $this->action())); 'action' => $this->action()));
$this->out->elementStart('fieldset'); $this->out->elementStart('fieldset');
@ -88,7 +88,6 @@ class Form extends Widget
$this->out->hidden('token', common_session_token()); $this->out->hidden('token', common_session_token());
} }
/** /**
* Name of the form * Name of the form
* *
@ -101,7 +100,6 @@ class Form extends Widget
{ {
} }
/** /**
* Visible or invisible data elements * Visible or invisible data elements
* *
@ -154,7 +152,7 @@ class Form extends Widget
function action() function action()
{ {
} }
/** /**
* Class of the form. * Class of the form.
* *
@ -163,6 +161,6 @@ class Form extends Widget
function formClass() function formClass()
{ {
return 'form'; return 'form';
} }
} }