diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-09-26 10:50:08 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-09-26 10:50:08 -0400 |
commit | 7ff02bb7d4483b3dc24edd78551a3936798056a8 (patch) | |
tree | 38310dbf82738f2eb9c6d49ab796132c837378f6 /actions/showstream.php | |
parent | cb265a2d8d475f024e25b56cd3632e381d8dd804 (diff) |
try to clean up user-without-profile errors
darcs-hash:20080926145008-5ed1f-8a60ed3c5adbfe75aa044732e8d10dbdb9b93089.gz
Diffstat (limited to 'actions/showstream.php')
-rw-r--r-- | actions/showstream.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/actions/showstream.php b/actions/showstream.php index 2f7c2fb92..43556a0ed 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -252,6 +252,11 @@ class ShowstreamAction extends StreamAction { $other = Profile::staticGet($subs->subscribed); + if (!$other) { + common_log_db_error($subs, 'SELECT', __FILE__); + continue; + } + common_element_start('li'); common_element_start('a', array('title' => ($other->fullname) ? $other->fullname : |