From ea5b12916342910d9df18af69f82a4f3aedb6d4b Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 1 Sep 2008 23:09:10 -0400 Subject: [PATCH] dnd -> available, just looks bad as dns darcs-hash:20080902030910-84dde-01fa58c8c1ab359a077c7a5498973235954be085.gz --- scripts/publicqueuehandler.php | 2 +- scripts/xmppconfirmhandler.php | 2 +- scripts/xmppqueuehandler.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/publicqueuehandler.php b/scripts/publicqueuehandler.php index 4ebe8187a2..9a7b6df5fa 100755 --- a/scripts/publicqueuehandler.php +++ b/scripts/publicqueuehandler.php @@ -45,7 +45,7 @@ class PublicQueueHandler extends QueueHandler { $this->conn = jabber_connect($this->_id); if ($this->conn) { $this->conn->addEventHandler('message', 'forward_message', $this); - jabber_send_presence("Send me a message to post an notice", 'dnd', NULL, 'available', -1); + jabber_send_presence("Send me a message to post an notice", 'available', NULL, 'available', -1); } return !is_null($this->conn); } diff --git a/scripts/xmppconfirmhandler.php b/scripts/xmppconfirmhandler.php index 1a1c550013..08a397fc43 100755 --- a/scripts/xmppconfirmhandler.php +++ b/scripts/xmppconfirmhandler.php @@ -51,7 +51,7 @@ class XmppConfirmHandler { $this->conn = jabber_connect($this->_id); if ($this->conn) { $this->conn->addEventHandler('message', 'forward_message', $this); - jabber_send_presence("Send me a message to post an notice", 'dnd', NULL, 'available', -1); + jabber_send_presence("Send me a message to post an notice", 'available', NULL, 'available', -1); } return !is_null($this->conn); } diff --git a/scripts/xmppqueuehandler.php b/scripts/xmppqueuehandler.php index 0b62670bc0..c6f5c3f121 100755 --- a/scripts/xmppqueuehandler.php +++ b/scripts/xmppqueuehandler.php @@ -47,7 +47,7 @@ class XmppQueueHandler extends QueueHandler { $this->conn = jabber_connect($this->_id); if ($this->conn) { $this->conn->addEventHandler('message', 'forward_message', $this); - jabber_send_presence("Send me a message to post an notice", 'dnd', NULL, 'available', -1); + jabber_send_presence("Send me a message to post an notice", 'available', NULL, 'available', -1); } return !is_null($this->conn); }