summaryrefslogtreecommitdiff
path: root/lib/action.php
diff options
context:
space:
mode:
authorsarven <csarven@plantard.controlezvous.ca>2009-01-15 21:22:50 +0000
committersarven <csarven@plantard.controlezvous.ca>2009-01-15 21:22:50 +0000
commite847b9a128f3b943b746875858e1148665f14ce0 (patch)
tree599a0eacdb0d64c1d51820dccc61df77d7308ef1 /lib/action.php
parent621c58a292884cadadbee9ad760e0c0c603f0a75 (diff)
parentc52d49f2fab9f08714ac6c3f950f23ee8497412f (diff)
Merge branch 'uiredesign' of ../evan into uiredesign
Diffstat (limited to 'lib/action.php')
-rw-r--r--lib/action.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/action.php b/lib/action.php
index 4a164d8b0..a8b5e70b1 100644
--- a/lib/action.php
+++ b/lib/action.php
@@ -194,11 +194,11 @@ class Action extends HTMLOutputter // lawsuit
function showBody()
{
$this->elementStart('body');
- $this->elementStart('wrap');
+ $this->elementStart('div', 'wrap');
$this->showHeader();
$this->showCore();
$this->showFooter();
- $this->elementEnd('wrap');
+ $this->elementEnd('div', 'wrap');
$this->elementEnd('body');
}
@@ -576,7 +576,7 @@ class Action extends HTMLOutputter // lawsuit
// Added @id to li for some control.
// XXX: We might want to move this to htmloutputter.php
- function menuItem($url, $text, $id=null, $title=null, $is_selected=false)
+ function menuItem($url, $text, $title=null, $is_selected=false, $id=null)
{
$lattrs = array();
if ($is_selected) {