summaryrefslogtreecommitdiff
path: root/lib/jabber.php
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2009-11-11 18:03:07 -0500
committerCraig Andrews <candrews@integralblue.com>2009-11-11 18:03:07 -0500
commit59e8896212a8d5e5ceed37162b8d38abc0de0e4b (patch)
treeeba461c82d2be4ea799d7a5ad594f24b0f96214d /lib/jabber.php
parent074b9faee0efafa2917e39257ab94f95fb6960b0 (diff)
Add the [noticeid] to the end of text only jabber messages
Diffstat (limited to 'lib/jabber.php')
-rw-r--r--lib/jabber.php2
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 . ']';
}