diff options
author | Ciaran Gultnieks <ciaran@ciarang.com> | 2010-01-07 21:01:07 +0000 |
---|---|---|
committer | Ciaran Gultnieks <ciaran@ciarang.com> | 2010-01-07 21:01:07 +0000 |
commit | 14421d9db31392c731fc6d298805f6f4fd216b8b (patch) | |
tree | 9d9c73821b9809603f6df9402db906cc3d6680a8 | |
parent | deeaafe71239597878cb3fd78aa66314745796a3 (diff) |
Correction to previous commit
-rw-r--r-- | lib/jabber.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/jabber.php b/lib/jabber.php index 6e094c207..a821856a8 100644 --- a/lib/jabber.php +++ b/lib/jabber.php @@ -440,7 +440,7 @@ function jabber_public_notice($notice) // XXX: should we send out non-local messages if public,localonly // = false? I think not - if ($public && $notice->is_local == LOCAL_PUBLIC) { + if ($public && $notice->is_local == Notice::LOCAL_PUBLIC) { $profile = Profile::staticGet($notice->profile_id); if (!$profile) { |