summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-11-15 15:39:42 -0800
committerBrion Vibber <brion@pobox.com>2010-11-15 15:39:42 -0800
commit6849b8f9e530deae776064d4489777a9fb4eb772 (patch)
tree63c59641de97485ef71636f9f0fdc12ea7d69145
parent0e763b49024703efc3e2bbadad83b03d3dd62790 (diff)
Workaround for display of Twitter remote users in remoteprofile (ModPlus plugin): use 73px avatar if no 96px present
-rw-r--r--lib/userprofile.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/userprofile.php b/lib/userprofile.php
index 0f48078d1..9124b7c94 100644
--- a/lib/userprofile.php
+++ b/lib/userprofile.php
@@ -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'));