diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-21 07:57:27 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-21 07:57:27 -0400 |
commit | 289c44141d7d6aabd924f6543c1a49df5b3444c4 (patch) | |
tree | 91a43c31509537dd6009b8c683b5ba5a21befab2 /lib/stream.php | |
parent | 396027cde825ea4d73eb2c852c39b5bf7e79aed8 (diff) |
default avatar
darcs-hash:20080521115727-84dde-73b58873e08c936139bd63cffab0c30883c9f8a5.gz
Diffstat (limited to 'lib/stream.php')
-rw-r--r-- | lib/stream.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stream.php b/lib/stream.php index 18b80d898..f5fcf226c 100644 --- a/lib/stream.php +++ b/lib/stream.php @@ -34,7 +34,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 : DEFAULT_STREAM_AVATAR, + common_element('img', array('src' => ($avatar) ? $avatar->url : $config['avatar']['default']['stream'], 'class' => 'avatar stream', 'width' => AVATAR_STREAM_SIZE, 'height' => AVATAR_STREAM_SIZE, |