Move ID param to end of menuItem and fix bad 'wrap' element

This commit is contained in:
Evan Prodromou 2009-01-15 21:19:23 +00:00
parent 1fc03ba63a
commit 9bed97a36c
1 changed files with 3 additions and 3 deletions

View File

@ -194,11 +194,11 @@ class Action extends HTMLOutputter // lawsuit
function showBody() function showBody()
{ {
$this->elementStart('body'); $this->elementStart('body');
$this->elementStart('wrap'); $this->elementStart('div', 'wrap');
$this->showHeader(); $this->showHeader();
$this->showCore(); $this->showCore();
$this->showFooter(); $this->showFooter();
$this->elementEnd('wrap'); $this->elementEnd('div', 'wrap');
$this->elementEnd('body'); $this->elementEnd('body');
} }
@ -576,7 +576,7 @@ class Action extends HTMLOutputter // lawsuit
// Added @id to li for some control. // Added @id to li for some control.
// XXX: We might want to move this to htmloutputter.php // 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(); $lattrs = array();
if ($is_selected) { if ($is_selected) {