]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
forgot to send a null for subject in XMPP message
authorEvan Prodromou <evan@prodromou.name>
Mon, 14 Jul 2008 04:34:59 +0000 (00:34 -0400)
committerEvan Prodromou <evan@prodromou.name>
Mon, 14 Jul 2008 04:34:59 +0000 (00:34 -0400)
darcs-hash:20080714043459-84dde-cd80f2558432b901944d32e71234eb95f6dc47fb.gz

lib/jabber.php

index f12aad90fca58e16949368ead1e3033814f4c9f8..e1167c580c79ae04a15016290e809c65658070e9 100644 (file)
@@ -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;
 }