diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-17 15:54:49 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-17 15:54:49 -0400 |
commit | a0bdc80053ce3b1d908aad6ab4a462b44b504e0c (patch) | |
tree | b2217598ccfd76855e0109d2778db63c08ee5636 /actions/showstream.php | |
parent | 466f0489c364441c125dffe6c9040bf6fcafd043 (diff) |
go to public timeline on logout and handle missing user more gracefully
darcs-hash:20080517195449-84dde-d08f3cad4fb79cdf81ef40f79aa30a29c9ddd9a7.gz
Diffstat (limited to 'actions/showstream.php')
-rw-r--r-- | actions/showstream.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actions/showstream.php b/actions/showstream.php index 45e155fea..c9b35ee0b 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -35,12 +35,14 @@ class ShowstreamAction extends StreamAction { if (!$user) { $this->no_such_user(); + return; } $profile = $user->getProfile(); if (!$profile) { common_server_error(_t('User record exists without profile.')); + return; } # Looks like we're good; show the header |