From 7ce054b1ed0f4af923aa4e041005d514a7358056 Mon Sep 17 00:00:00 2001 From: sarven Date: Thu, 15 Jan 2009 22:31:32 +0000 Subject: [PATCH] Wrapper for notices --- lib/noticelist.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/noticelist.php b/lib/noticelist.php index 7f63089b30..eb5416ee45 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; }