diff options
Diffstat (limited to 'lib')
-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; } |