Workaround for display of Twitter remote users in remoteprofile (ModPlus plugin): use 73px avatar if no 96px present

This commit is contained in:
Brion Vibber 2010-11-15 15:39:42 -08:00
parent 0e763b4902
commit 6849b8f9e5
1 changed files with 4 additions and 0 deletions

View File

@ -98,6 +98,10 @@ class UserProfile extends Widget
if (Event::handle('StartProfilePageAvatar', array($this->out, $this->profile))) {
$avatar = $this->profile->getAvatar(AVATAR_PROFILE_SIZE);
if (!$avatar) {
// hack for remote Twitter users: no 96px, but large Twitter size is 73px
$avatar = $this->profile->getAvatar(73);
}
$this->out->elementStart('dl', 'entity_depiction');
$this->out->element('dt', null, _('Photo'));