From: Evan Prodromou Date: Sat, 5 Jul 2008 18:47:29 +0000 (-0400) Subject: use method instead of now-protected attribute for xmpp X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a050b2f1d99eb0b1d83c339ae888a3538609207c;p=quix0rs-gnu-social.git use method instead of now-protected attribute for xmpp darcs-hash:20080705184729-84dde-8ed4e07c1694f0300bf5acf967e8c596b9c4d635.gz --- diff --git a/xmppdaemon.php b/xmppdaemon.php index c526b4ef00..b07f44cffa 100755 --- a/xmppdaemon.php +++ b/xmppdaemon.php @@ -63,7 +63,7 @@ class XMPPDaemon { if (!$this->conn) { return false; } - return !$this->conn->disconnected; + return !$this->conn->isDisconnected(); } function handle() {