From ec76d448de9b38c03aa61f8112e2d4ce8f7aee79 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 5 Jul 2008 13:40:45 -0400 Subject: change to use SVN version of XMPPHP darcs-hash:20080705174045-d018c-84a84f72a3f371fe767ccca890d67be3b8a127af.gz --- lib/jabber.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/jabber.php b/lib/jabber.php index 8f8d6a4d8..9b6d1c71a 100644 --- a/lib/jabber.php +++ b/lib/jabber.php @@ -19,7 +19,7 @@ if (!defined('LACONICA')) { exit(1); } -require_once('xmpp.php'); +require_once('XMPPHP/XMPP.php'); function jabber_valid_base_jid($jid) { # Cheap but effective @@ -44,7 +44,7 @@ function jabber_daemon_address() { function jabber_connect($resource=NULL) { static $conn = NULL; if (!$conn) { - $conn = new XMPP(common_config('xmpp', 'host') ? + $conn = new XMPPHP_XMPP(common_config('xmpp', 'host') ? common_config('xmpp', 'host') : common_config('xmpp', 'server'), common_config('xmpp', 'port'), @@ -58,7 +58,7 @@ function jabber_connect($resource=NULL) { return false; } $conn->connect(true); # true = persistent connection - if ($conn->disconnected) { + if ($conn->isDisconnected()) { return false; } $conn->processUntil('session_start'); -- cgit v1.2.3-54-g00ecf