From 7ff02bb7d4483b3dc24edd78551a3936798056a8 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 26 Sep 2008 10:50:08 -0400 Subject: try to clean up user-without-profile errors darcs-hash:20080926145008-5ed1f-8a60ed3c5adbfe75aa044732e8d10dbdb9b93089.gz --- actions/repliesrss.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'actions/repliesrss.php') diff --git a/actions/repliesrss.php b/actions/repliesrss.php index 1a12b45bf..b811db7eb 100644 --- a/actions/repliesrss.php +++ b/actions/repliesrss.php @@ -84,6 +84,9 @@ class RepliesrssAction extends Rss10Action { function get_image() { $user = $this->user; $profile = $user->getProfile(); + if (!$profile) { + return NULL; + } $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE); return ($avatar) ? $avatar->url : NULL; } -- cgit v1.2.3