From: Evan Prodromou Date: Wed, 11 Feb 2009 13:34:21 +0000 (-0500) Subject: add related link to Atom for feeds for some downstream users X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c640b747f7e682ac632397cf32e41ef4c2dca96f;p=quix0rs-gnu-social.git add related link to Atom for feeds for some downstream users --- diff --git a/lib/jabber.php b/lib/jabber.php index f41d984d62..b385d3c5cc 100644 --- a/lib/jabber.php +++ b/lib/jabber.php @@ -186,6 +186,11 @@ function jabber_format_entry($profile, $notice) $entry .= "". $notice->uri . "\n"; $entry .= "".common_date_w3dtf($notice->created)."\n"; $entry .= "".common_date_w3dtf($notice->modified)."\n"; + if ($notice->reply_to) { + $replyurl = common_local_url('shownotice', + array('notice' => $notice->reply_to)); + $entry .= "\n"; + } $entry .= "\n"; $html = "\n\n";