diff options
author | Evan Prodromou <evan@status.net> | 2009-10-24 19:59:46 -0400 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-10-24 19:59:46 -0400 |
commit | 3c724ccd0df0d205a9567e435b6060300537f904 (patch) | |
tree | 4be361f0112444c5c8949a1e486efd1063030681 /lib/unqueuemanager.php | |
parent | 967de946654e96793d11413a46067ac95b356a64 (diff) | |
parent | 6d6de3c1c7b359815aa0381b4cde3fcc8258cc80 (diff) |
Merge branch '0.9.x' into location
Diffstat (limited to 'lib/unqueuemanager.php')
-rw-r--r-- | lib/unqueuemanager.php | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/unqueuemanager.php b/lib/unqueuemanager.php index 51261bcd7..72dbc4eed 100644 --- a/lib/unqueuemanager.php +++ b/lib/unqueuemanager.php @@ -48,12 +48,6 @@ class UnQueueManager jabber_public_notice($notice); } break; - case 'facebook': - if ($this->_isLocal($notice)) { - require_once INSTALLDIR . '/lib/facebookutil.php'; - return facebookBroadcastNotice($notice); - } - break; case 'ping': if ($this->_isLocal($notice)) { require_once INSTALLDIR . '/lib/ping.php'; @@ -72,7 +66,7 @@ class UnQueueManager break; default: if (Event::handle('UnqueueHandleNotice', array(&$notice, $queue))) { - throw ServerException("UnQueueManager: Unknown queue: $queue"); + throw new ServerException("UnQueueManager: Unknown queue: $queue"); } } } |