]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Wrapper for notices
authorsarven <csarven@plantard.controlezvous.ca>
Thu, 15 Jan 2009 22:31:32 +0000 (22:31 +0000)
committersarven <csarven@plantard.controlezvous.ca>
Thu, 15 Jan 2009 22:31:32 +0000 (22:31 +0000)
lib/noticelist.php

index 7f63089b309a0088844435abdb19040e57a638dc..eb5416ee45a550b841b196f27366aaec290e25db 100644 (file)
@@ -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;
     }