diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-07-05 14:47:29 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-07-05 14:47:29 -0400 |
commit | a050b2f1d99eb0b1d83c339ae888a3538609207c (patch) | |
tree | 37f7c293c42211c8c0ef851ba5c1e6750e02eaa0 | |
parent | 17f9601572936a1b85de37ac018becef204bb236 (diff) |
use method instead of now-protected attribute for xmpp
darcs-hash:20080705184729-84dde-8ed4e07c1694f0300bf5acf967e8c596b9c4d635.gz
-rwxr-xr-x | xmppdaemon.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmppdaemon.php b/xmppdaemon.php index c526b4ef0..b07f44cff 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() { |