From: Craig Andrews Date: Wed, 11 Nov 2009 23:03:07 +0000 (-0500) Subject: Add the [noticeid] to the end of text only jabber messages X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=59e8896212a8d5e5ceed37162b8d38abc0de0e4b;p=quix0rs-gnu-social.git Add the [noticeid] to the end of text only jabber messages --- diff --git a/lib/jabber.php b/lib/jabber.php index 23c2e0d946..a8e295ea5e 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 . ']'; }