diff options
author | sarven <csarven@plantard.controlezvous.ca> | 2009-01-15 22:31:32 +0000 |
---|---|---|
committer | sarven <csarven@plantard.controlezvous.ca> | 2009-01-15 22:31:32 +0000 |
commit | 7ce054b1ed0f4af923aa4e041005d514a7358056 (patch) | |
tree | 8ff66e39a928cdfeca806095b675998dd6c25d01 /lib/noticelist.php | |
parent | d012bdabde712fbb600408d4a834cba399d4015d (diff) |
Wrapper for notices
Diffstat (limited to 'lib/noticelist.php')
-rw-r--r-- | lib/noticelist.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/noticelist.php b/lib/noticelist.php index 7f63089b3..eb5416ee4 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -79,6 +79,7 @@ class NoticeList extends Widget function show() { + $this->out->elementStart('div', array('id' =>'notices_primary')); $this->out->element('h2', null, _('Notices')); $this->out->elementStart('ul', array('class' => 'notices')); @@ -96,6 +97,7 @@ class NoticeList extends Widget } $this->out->elementEnd('ul'); + $this->out->elementEnd('div'); return $cnt; } |