From: Evan Prodromou Date: Mon, 14 Jul 2008 04:34:59 +0000 (-0400) Subject: forgot to send a null for subject in XMPP message X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=df126bf5381e4484cb164648992e9784188fe82c;p=quix0rs-gnu-social.git forgot to send a null for subject in XMPP message darcs-hash:20080714043459-84dde-cd80f2558432b901944d32e71234eb95f6dc47fb.gz --- 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; }