From df126bf5381e4484cb164648992e9784188fe82c Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 14 Jul 2008 00:34:59 -0400 Subject: [PATCH] forgot to send a null for subject in XMPP message darcs-hash:20080714043459-84dde-cd80f2558432b901944d32e71234eb95f6dc47fb.gz --- lib/jabber.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jabber.php b/lib/jabber.php index f12aad90fc..e1167c580c 100644 --- a/lib/jabber.php +++ b/lib/jabber.php @@ -81,7 +81,7 @@ function jabber_send_notice($to, $notice) { } $msg = jabber_format_notice($profile, $notice); $entry = jabber_format_entry($profile, $notice); - $conn->message($to, $msg, 'chat', $entry); + $conn->message($to, $msg, 'chat', NULL, $entry); return true; }