summaryrefslogtreecommitdiff
path: root/plugins/Xmpp/xmppmanager.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Xmpp/xmppmanager.php')
-rw-r--r--plugins/Xmpp/xmppmanager.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Xmpp/xmppmanager.php b/plugins/Xmpp/xmppmanager.php
index 87d818668..1a4e9546d 100644
--- a/plugins/Xmpp/xmppmanager.php
+++ b/plugins/Xmpp/xmppmanager.php
@@ -184,14 +184,14 @@ class XmppManager extends ImManager
}
common_log(LOG_DEBUG, "Sending ping #{$this->pingid}");
- $this->conn->send("<iq from='{" . $this->plugin->daemon_screenname() . "}' to='{$this->plugin->server}' id='ping_{$this->pingid}' type='get'><ping xmlns='urn:xmpp:ping'/></iq>");
+ $this->conn->send("<iq from='{" . $this->plugin->daemonScreenname() . "}' to='{$this->plugin->server}' id='ping_{$this->pingid}' type='get'><ping xmlns='urn:xmpp:ping'/></iq>");
$this->lastping = $now;
return true;
}
function handle_xmpp_message(&$pl)
{
- $this->plugin->enqueue_incoming_raw($pl);
+ $this->plugin->enqueueIncomingRaw($pl);
return true;
}