summaryrefslogtreecommitdiff
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
parent621c58a292884cadadbee9ad760e0c0c603f0a75 (diff)
parentc52d49f2fab9f08714ac6c3f950f23ee8497412f (diff)
Merge branch 'uiredesign' of ../evan into uiredesign
-rw-r--r--lib/action.php6
-rw-r--r--lib/noticelist.php2
2 files changed, 4 insertions, 4 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) {
diff --git a/lib/noticelist.php b/lib/noticelist.php
index 0fc6d513f..ad3af4391 100644
--- a/lib/noticelist.php
+++ b/lib/noticelist.php
@@ -342,7 +342,7 @@ class NoticeListItem extends Widget
$this->out->elementStart('dl', 'timestamp');
$this->out->element('dt', _('Published'));
$this->out->elementStart('dd', null);
- $this->out->element('a', array('rel' => 'bookmark',
+ $this->out->elementStart('a', array('rel' => 'bookmark',
'href' => $noticeurl));
$dt = common_date_iso8601($this->notice->created);
$this->out->element('abbr', array('class' => 'published',