diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-20 16:11:20 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-20 16:11:20 -0400 |
commit | 63758c59e1df81c955ce8528d80ba3fd0e466bec (patch) | |
tree | ca06541d7d801a8d9da8a8ca7c4c0532e0f3e308 /lib/stream.php | |
parent | 778fba1a24712c85b525a65d3e4c0862e0833cdd (diff) |
reformat showstream
darcs-hash:20080520201120-84dde-4b455d4e4854454cc78be8c636a3e0c7f730b93a.gz
Diffstat (limited to 'lib/stream.php')
-rw-r--r-- | lib/stream.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/stream.php b/lib/stream.php index d1d7ab1cd..18b80d898 100644 --- a/lib/stream.php +++ b/lib/stream.php @@ -27,7 +27,6 @@ class StreamAction extends Action { parent::handle($args); } - # XXX: for 'showstream' repeats same avatar over and over function show_notice($notice) { $profile = $notice->getProfile(); # XXX: RDFa @@ -36,7 +35,7 @@ class StreamAction extends Action { $avatar = $profile->getAvatar(AVATAR_STREAM_SIZE); common_element_start('a', array('href' => $profile->profileurl)); common_element('img', array('src' => ($avatar) ? $avatar->url : DEFAULT_STREAM_AVATAR, - 'class' => 'avatar stream floatLeft', + 'class' => 'avatar stream', 'width' => AVATAR_STREAM_SIZE, 'height' => AVATAR_STREAM_SIZE, 'alt' => |