diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-11-11 18:03:07 -0500 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-11-11 18:03:07 -0500 |
commit | 59e8896212a8d5e5ceed37162b8d38abc0de0e4b (patch) | |
tree | eba461c82d2be4ea799d7a5ad594f24b0f96214d /lib | |
parent | 074b9faee0efafa2917e39257ab94f95fb6960b0 (diff) |
Add the [noticeid] to the end of text only jabber messages
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 23c2e0d94..a8e295ea5 100644 --- a/lib/jabber.php +++ b/lib/jabber.php @@ -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 . ']'; } |