diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-10 15:21:01 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-10 15:21:01 -0400 |
commit | 74517da3f545d9659f58af8fa273ca4fafa9ff50 (patch) | |
tree | b920f5239bcd27cf2e2a9d6b81cf6673a578d5df /lib/stream.php | |
parent | 7d467df0c04477b5d9046c54c76123f98eb472a6 (diff) |
fixup for new theme design in public.php
darcs-hash:20080610192101-84dde-29ba2cc875b73131bbbbef4cbdfb17965df37677.gz
Diffstat (limited to 'lib/stream.php')
-rw-r--r-- | lib/stream.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/stream.php b/lib/stream.php index ac683367f..9a4cf41eb 100644 --- a/lib/stream.php +++ b/lib/stream.php @@ -31,7 +31,7 @@ class StreamAction extends Action { global $config; $profile = $notice->getProfile(); # XXX: RDFa - common_element_start('div', array('class' => 'notice', + common_element_start('li', array('class' => 'notice_single', 'id' => 'notice-' . $notice->id)); $avatar = $profile->getAvatar(AVATAR_STREAM_SIZE); common_element_start('a', array('href' => $profile->profileurl)); @@ -47,13 +47,15 @@ class StreamAction extends Action { 'class' => 'nickname'), $profile->nickname); # FIXME: URL, image, video, audio - common_element_start('span', array('class' => 'content')); + common_element_start('p', array('class' => 'content')); common_raw(common_render_content($notice->content, $notice)); - common_element_end('span'); + common_element_end('p'); $noticeurl = common_local_url('shownotice', array('notice' => $notice->id)); + common_element_start('p', 'time'); common_element('a', array('class' => 'notice', 'href' => $noticeurl), common_date_string($notice->created)); - common_element_end('div'); + common_element_end('p'); + common_element_end('li'); } } |