summaryrefslogtreecommitdiff
path: root/lib/form.php
diff options
context:
space:
mode:
authorsarven <csarven@plantard.controlezvous.ca>2009-01-23 02:43:55 +0000
committersarven <csarven@plantard.controlezvous.ca>2009-01-23 02:43:55 +0000
commit8ba19b0686bc4f616e506ab387eb287ae95226df (patch)
tree06160115a9e52ced2d15bf97a54bebddf2c20d8d /lib/form.php
parent0daf242100925396aad4cc9fea5de0de2ec98ce8 (diff)
parentba3b82c5638ba01fa0da6c9025ba2a4b852e66af (diff)
Merge branch 'master' of ../trunk
Diffstat (limited to 'lib/form.php')
-rw-r--r--lib/form.php8
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/form.php b/lib/form.php
index 011d4bfc9..5317df471 100644
--- a/lib/form.php
+++ b/lib/form.php
@@ -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';
}
}