diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-07-14 00:34:59 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-07-14 00:34:59 -0400 |
commit | df126bf5381e4484cb164648992e9784188fe82c (patch) | |
tree | c6f30d867fc819efa2632d82923a9df676e2051d | |
parent | d0e5fe535e6025440f0bc36224a1255d27ac686f (diff) |
forgot to send a null for subject in XMPP message
darcs-hash:20080714043459-84dde-cd80f2558432b901944d32e71234eb95f6dc47fb.gz
-rw-r--r-- | lib/jabber.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/jabber.php b/lib/jabber.php index f12aad90f..e1167c580 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; } |