]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/noticesection.php
Changed ul to ol and added xoxo for notice lists.
[quix0rs-gnu-social.git] / lib / noticesection.php
index 37aafdaf6cb2c4753d522d0d94f1dea7edb2d08f..ca14326861b5aaa92ab614bd71fe67eee7d15707 100644 (file)
@@ -52,12 +52,12 @@ class NoticeSection extends Section
     {
         $notices = $this->getNotices();
         $cnt = 0;
-        $this->out->elementStart('ul', 'notices');
+        $this->out->elementStart('ol', 'notices xoxo');
         while ($notices->fetch() && ++$cnt <= NOTICES_PER_SECTION) {
             $this->showNotice($notices);
         }
 
-        $this->out->elementEnd('ul');
+        $this->out->elementEnd('ol');
         return ($cnt > NOTICES_PER_SECTION);
     }