X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fnoticesection.php;h=ca14326861b5aaa92ab614bd71fe67eee7d15707;hb=4df1ea49ec75ec9dd64bc8f58c01e64ea18bedc7;hp=37aafdaf6cb2c4753d522d0d94f1dea7edb2d08f;hpb=5897dfa4c37d6a44bcde5dc7569c8b0d30f21b84;p=quix0rs-gnu-social.git diff --git a/lib/noticesection.php b/lib/noticesection.php index 37aafdaf6c..ca14326861 100644 --- a/lib/noticesection.php +++ b/lib/noticesection.php @@ -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); }