diff options
author | Ciaran Gultnieks <ciaran@ciarang.com> | 2010-01-07 20:59:31 +0000 |
---|---|---|
committer | Ciaran Gultnieks <ciaran@ciarang.com> | 2010-01-07 20:59:31 +0000 |
commit | deeaafe71239597878cb3fd78aa66314745796a3 (patch) | |
tree | 62185263ebdc7dc58ec69769c4d48a2c0ee8ff71 /actions | |
parent | e53512cd2c2180f81fc7317de9df09a140099aa3 (diff) |
Fixes to bugs where non-local messages were being wrong put in the public timeline and public xmpp feed
Diffstat (limited to 'actions')
-rw-r--r-- | actions/shownotice.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/shownotice.php b/actions/shownotice.php index 5d16fdad9..d09100f67 100644 --- a/actions/shownotice.php +++ b/actions/shownotice.php @@ -103,7 +103,7 @@ class ShownoticeAction extends OwnerDesignAction $this->user = User::staticGet('id', $this->profile->id); - if (! $this->notice->is_local) { + if ($this->notice->is_local == Notice::REMOTE_OMB) { common_redirect($this->notice->uri); return false; } |