]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Add the [noticeid] to the end of text only jabber messages
authorCraig Andrews <candrews@integralblue.com>
Wed, 11 Nov 2009 23:03:07 +0000 (18:03 -0500)
committerCraig Andrews <candrews@integralblue.com>
Wed, 11 Nov 2009 23:03:07 +0000 (18:03 -0500)
lib/jabber.php

index 23c2e0d946e29f0ccab1d6046d0bc20394e8929a..a8e295ea5eb3f3a32e593b04b5575e00e26e351f 100644 (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 . ']';
 }