summaryrefslogtreecommitdiff
path: root/lib/noticesection.php
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@controlyourself.ca>2009-05-29 02:38:38 +0000
committerSarven Capadisli <csarven@controlyourself.ca>2009-05-29 02:38:38 +0000
commitb8de7935568e631bc99aec6120f2bc4090f50fec (patch)
treea7cabffea6029e63856f40714531ded64b9879f2 /lib/noticesection.php
parenta456ceb47c5019acd8d8766be274eda955a58125 (diff)
Changed ul to ol and added xoxo for notice lists.
Diffstat (limited to 'lib/noticesection.php')
-rw-r--r--lib/noticesection.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/noticesection.php b/lib/noticesection.php
index 37aafdaf6..ca1432686 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);
}