diff options
author | Robin Millette <millette@controlyourself.ca> | 2009-05-31 17:12:04 -0400 |
---|---|---|
committer | Robin Millette <millette@controlyourself.ca> | 2009-05-31 17:12:04 -0400 |
commit | ebeb5f744cbfd5bfea0da1b350a3757865ec4b3b (patch) | |
tree | e94ceadeeba967759cb332211a5adb5d6dceab0b /lib/noticesection.php | |
parent | 3e0c291810d23bb54c337c0fe95c1ba441459c4c (diff) | |
parent | 36fe5a85b2de9f71a5c963abd0074dd5b7ae1e61 (diff) |
Merge branch '0.8.x' of git@gitorious.org:+laconica-developers/laconica/dev into upload
Conflicts:
js/util.js
lib/attachmentlist.php
Diffstat (limited to 'lib/noticesection.php')
-rw-r--r-- | lib/noticesection.php | 4 |
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); } |