diff options
author | sarven <csarven@plantard.controlezvous.ca> | 2009-01-15 22:19:40 +0000 |
---|---|---|
committer | sarven <csarven@plantard.controlezvous.ca> | 2009-01-15 22:19:40 +0000 |
commit | 8b3459812764d05044bcdfb18627f80c34dc239d (patch) | |
tree | b41ec1d952b95ad3e620ecea4a3bfbc3f480d1f7 /lib/noticelist.php | |
parent | 07e84976c2f4038f36570d969c4be63b134cf60d (diff) |
Changed to class
Diffstat (limited to 'lib/noticelist.php')
-rw-r--r-- | lib/noticelist.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/noticelist.php b/lib/noticelist.php index ad3af4391..7f63089b3 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -79,7 +79,8 @@ class NoticeList extends Widget function show() { - $this->out->elementStart('ul', array('id' => 'notices')); + $this->out->element('h2', null, _('Notices')); + $this->out->elementStart('ul', array('class' => 'notices')); $cnt = 0; |