]> git.mxchange.org Git - friendica.git/commitdiff
Fix for subscribing to the wrong feed from OStatus
authorMichael <heluecht@pirati.ca>
Fri, 18 May 2018 13:23:27 +0000 (13:23 +0000)
committerMichael <heluecht@pirati.ca>
Fri, 18 May 2018 13:23:27 +0000 (13:23 +0000)
mod/profile.php

index d6cbd276ff59ccb812fd84ca42dc4ec2d3ffac9a..2856cdd17722481fe499602f9132e38dd2d592a6 100644 (file)
@@ -75,6 +75,7 @@ function profile_init(App $a)
        }
 
        $a->page['htmlhead'] .= '<meta name="dfrn-global-visibility" content="' . ($a->profile['net-publish'] ? 'true' : 'false') . '" />' . "\r\n";
+       $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/dfrn_poll/' . $which . '" title="' . L10n::t('%s\'s timeline', $a->profile['username']) . '"/>' . "\r\n";
        $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/feed/' . $which . '/" title="' . L10n::t('%s\'s posts', $a->profile['username']) . '"/>' . "\r\n";
        $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/feed/' . $which . '/comments" title="' . L10n::t('%s\'s comments', $a->profile['username']) . '"/>' . "\r\n";
        $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/feed/' . $which . '/activity" title="' . L10n::t('%s\'s timeline', $a->profile['username']) . '"/>' . "\r\n";