Add the [noticeid] to the end of text only jabber messages

This commit is contained in:
Craig Andrews 2009-11-11 18:03:07 -05:00
parent 074b9faee0
commit 59e8896212
1 changed files with 1 additions and 1 deletions

View File

@ -481,5 +481,5 @@ function jabber_public_notice($notice)
function jabber_format_notice(&$profile, &$notice)
{
return $profile->nickname . ': ' . $notice->content;
return $profile->nickname . ': ' . $notice->content . ' [' . $notice->id . ']';
}