summaryrefslogtreecommitdiff
path: root/lib/util.php
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2010-01-23 01:25:27 -0500
committerCraig Andrews <candrews@integralblue.com>2010-01-27 13:48:35 -0500
commite9995b0f6ab0788162e22c996e5ee0af416dd519 (patch)
tree10b6eda02028c3320d0c7aaef88570f3ac862041 /lib/util.php
parent5224c7d6c263f078c3628650ff2b4b706862307c (diff)
Create IM plugin, Pluginize XMPP, Create AIM plugin
Diffstat (limited to 'lib/util.php')
-rw-r--r--lib/util.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/util.php b/lib/util.php
index 6c9f6316a..e60cb6765 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -994,18 +994,9 @@ function common_enqueue_notice($notice)
$transports = $allTransports;
- $xmpp = common_config('xmpp', 'enabled');
-
- if ($xmpp) {
- $transports[] = 'jabber';
- }
-
if ($notice->is_local == Notice::LOCAL_PUBLIC ||
$notice->is_local == Notice::LOCAL_NONPUBLIC) {
$transports = array_merge($transports, $localTransports);
- if ($xmpp) {
- $transports[] = 'public';
- }
}
if (Event::handle('StartEnqueueNotice', array($notice, &$transports))) {