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/noticelist.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/noticelist.php')
-rw-r--r-- | lib/noticelist.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/noticelist.php b/lib/noticelist.php index 420272515..5513e317e 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -86,7 +86,7 @@ class NoticeList extends Widget { $this->out->elementStart('div', array('id' =>'notices_primary')); $this->out->element('h2', null, _('Notices')); - $this->out->elementStart('ul', array('class' => 'notices')); + $this->out->elementStart('ol', array('class' => 'notices xoxo')); $cnt = 0; @@ -101,7 +101,7 @@ class NoticeList extends Widget $item->show(); } - $this->out->elementEnd('ul'); + $this->out->elementEnd('ol'); $this->out->elementEnd('div'); return $cnt; |