summaryrefslogtreecommitdiff
path: root/lib/htmloutputter.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-01-16 02:22:28 +0000
committerEvan Prodromou <evan@controlyourself.ca>2009-01-16 02:22:28 +0000
commit8f25e4b48a5a578720baac0bc26dd5b9ba8fe3e3 (patch)
treef49bcf68ea5d219be5080b0e37ec8111ac3b9fd1 /lib/htmloutputter.php
parentba1e36dd492cedbad49f00715cf35a8cdf23ac07 (diff)
parent5d5dcb6f51c0babc54f43f1baace4cc9830e4939 (diff)
Merge ../csarven into uiredesign
Diffstat (limited to 'lib/htmloutputter.php')
-rw-r--r--lib/htmloutputter.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php
index 75a995bef..eb8a612e4 100644
--- a/lib/htmloutputter.php
+++ b/lib/htmloutputter.php
@@ -324,13 +324,11 @@ class HTMLOutputter extends XMLOutputter
function submit($id, $label, $cls='submit', $name=null)
{
- $this->elementStart('p');
$this->element('input', array('type' => 'submit',
'id' => $id,
'name' => ($name) ? $name : $id,
'class' => $cls,
'value' => $label));
- $this->elementEnd('p');
}
/**