summaryrefslogtreecommitdiff
path: root/actions/userrss.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2008-09-26 10:50:08 -0400
committerEvan Prodromou <evan@controlyourself.ca>2008-09-26 10:50:08 -0400
commit7ff02bb7d4483b3dc24edd78551a3936798056a8 (patch)
tree38310dbf82738f2eb9c6d49ab796132c837378f6 /actions/userrss.php
parentcb265a2d8d475f024e25b56cd3632e381d8dd804 (diff)
try to clean up user-without-profile errors
darcs-hash:20080926145008-5ed1f-8a60ed3c5adbfe75aa044732e8d10dbdb9b93089.gz
Diffstat (limited to 'actions/userrss.php')
-rw-r--r--actions/userrss.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/actions/userrss.php b/actions/userrss.php
index 2ae45dc9c..e60851915 100644
--- a/actions/userrss.php
+++ b/actions/userrss.php
@@ -74,6 +74,11 @@ class UserrssAction extends Rss10Action {
function get_image() {
$user = $this->user;
$profile = $user->getProfile();
+ if (!$profile) {
+ common_log_db_error($user, 'SELECT', __FILE__);
+ $this->server_error(_('User without matching profile'));
+ return NULL;
+ }
$avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
return ($avatar) ? $avatar->url : NULL;
}