diff options
author | Sarven Capadisli <csarven@controlyourself.ca> | 2009-05-29 02:38:38 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@controlyourself.ca> | 2009-05-29 02:38:38 +0000 |
commit | b8de7935568e631bc99aec6120f2bc4090f50fec (patch) | |
tree | a7cabffea6029e63856f40714531ded64b9879f2 /actions/shownotice.php | |
parent | a456ceb47c5019acd8d8766be274eda955a58125 (diff) |
Changed ul to ol and added xoxo for notice lists.
Diffstat (limited to 'actions/shownotice.php')
-rw-r--r-- | actions/shownotice.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/shownotice.php b/actions/shownotice.php index 2c469c9de..34c8a8e94 100644 --- a/actions/shownotice.php +++ b/actions/shownotice.php @@ -208,10 +208,10 @@ class ShownoticeAction extends Action function showContent() { - $this->elementStart('ul', array('class' => 'notices')); + $this->elementStart('ol', array('class' => 'notices xoxo')); $nli = new NoticeListItem($this->notice, $this); $nli->show(); - $this->elementEnd('ul'); + $this->elementEnd('ol'); } /** |