forgot to send a null for subject in XMPP message

darcs-hash:20080714043459-84dde-cd80f2558432b901944d32e71234eb95f6dc47fb.gz
This commit is contained in:
Evan Prodromou 2008-07-14 00:34:59 -04:00
parent d0e5fe535e
commit df126bf538
1 changed files with 1 additions and 1 deletions

View 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;
}