show default profile image in showstream

darcs-hash:20080615014742-84dde-d39f4c7744dc430fdb4ad64a172ffe3e909ee4a0.gz
This commit is contained in:
Evan Prodromou 2008-06-14 21:47:42 -04:00
parent 2fcae93272
commit 596b386a95
1 changed files with 17 additions and 18 deletions

View File

@ -113,27 +113,26 @@ class ShowstreamAction extends StreamAction {
function show_personal($profile) { function show_personal($profile) {
$avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE); $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
if ($avatar) { common_element_start('div', array('id' => 'profile_avatar'));
common_element_start('div', array('id' => 'profile_avatar')); common_element('img', array('src' => ($avatar) ? $avatar->url : common_default_avatar(AVATAR_PROFILE_SIZE),
common_element('img', array('src' => $avatar->url, 'class' => 'avatar profile',
'class' => 'avatar profile', 'width' => AVATAR_PROFILE_SIZE,
'width' => AVATAR_PROFILE_SIZE, 'height' => AVATAR_PROFILE_SIZE,
'height' => AVATAR_PROFILE_SIZE, 'alt' => $profile->nickname));
'alt' => $profile->nickname)); $cur = common_current_user();
$cur = common_current_user(); if ($cur) {
if ($cur) { if ($cur->id != $profile->id) {
if ($cur->id != $profile->id) { if ($cur->isSubscribed($profile)) {
if ($cur->isSubscribed($profile)) { $this->show_unsubscribe_form($profile);
$this->show_unsubscribe_form($profile); } else {
} else { $this->show_subscribe_form($profile);
$this->show_subscribe_form($profile);
}
} }
} else {
$this->show_remote_subscribe_form($profile);
} }
common_element_end('div'); } else {
$this->show_remote_subscribe_form($profile);
} }
common_element_end('div');
common_element_start('div', array('id' => 'profile_information')); common_element_start('div', array('id' => 'profile_information'));
if ($profile->fullname) { if ($profile->fullname) {