summaryrefslogtreecommitdiff
path: root/lib/stream.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-07-03 13:03:47 -0400
committerEvan Prodromou <evan@prodromou.name>2008-07-03 13:03:47 -0400
commit7816e4122a1e9edb241c009b800714e31db5c356 (patch)
treeffb4cd019ed79bdd62ac23b60356c1acc0b722b3 /lib/stream.php
parent121b7e60b491ecc01634d275f6b234f2cb628f01 (diff)
add a display url function to display URLs
darcs-hash:20080703170347-84dde-1ba2e178dd4051aa63e4073e472c73240e3d9fe8.gz
Diffstat (limited to 'lib/stream.php')
-rw-r--r--lib/stream.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stream.php b/lib/stream.php
index b2f57fab3..a37e4dfa3 100644
--- a/lib/stream.php
+++ b/lib/stream.php
@@ -60,7 +60,7 @@ class StreamAction extends Action {
'id' => 'notice-' . $notice->id));
$avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
common_element_start('a', array('href' => $profile->profileurl));
- common_element('img', array('src' => ($avatar) ? $avatar->url : common_default_avatar(AVATAR_STREAM_SIZE),
+ common_element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_STREAM_SIZE),
'class' => 'avatar stream',
'width' => AVATAR_STREAM_SIZE,
'height' => AVATAR_STREAM_SIZE,