diff options
Diffstat (limited to 'lib')
-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; } |