summaryrefslogtreecommitdiff
path: root/lib/form.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/form.php')
-rw-r--r--lib/form.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/form.php b/lib/form.php
index 868c986b9..f6501dc6d 100644
--- a/lib/form.php
+++ b/lib/form.php
@@ -181,4 +181,14 @@ class Form extends Widget
{
return 'form';
}
+
+ function li()
+ {
+ $this->out->elementStart('li');
+ }
+
+ function unli()
+ {
+ $this->out->elementEnd('li');
+ }
}