]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
forgot the user's name in HTML output
authorEvan Prodromou <evan@prodromou.name>
Fri, 18 Jul 2008 07:02:52 +0000 (03:02 -0400)
committerEvan Prodromou <evan@prodromou.name>
Fri, 18 Jul 2008 07:02:52 +0000 (03:02 -0400)
darcs-hash:20080718070252-84dde-27b01cd01b309ba079c38e9bd09a97b1626d479b.gz

lib/jabber.php

index 77bc316dd75aabbcfb69217afe2ec1859f0d46d6..a0f5080d0fb9faeb641010704a3949eee606d02f 100644 (file)
@@ -139,6 +139,7 @@ function jabber_format_entry($profile, $notice) {
 
        $html = "\n<html xmlns='http://jabber.org/protocol/xhtml-im'>\n";
        $html .= "<body xmlns='http://www.w3.org/1999/xhtml'>\n";
+       $html .= "<a href='".common_profile_url($profile->nickname)."'>".$profile->nickname."</a>: ";
        $html .= ($notice->rendered) ? $notice->rendered : common_render_content($notice->content, $notice);
        $html .= "\n</body>\n";
        $html .= "\n</html>\n";