Skip to content

Commit

Permalink
Merge pull request #14448 from jdalsem/elgg5-bugfix
Browse files Browse the repository at this point in the history
fixed(rss): invalid atom link href in rss channel
  • Loading branch information
jeabakker committed Jul 31, 2023
2 parents 45ae6bc + 0467cf8 commit 598f5d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/rss/page/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<channel>
<title><![CDATA[<?= $title; ?>}]]></title>
<link><?= $url; ?></link>
<atom:link href="<<?= $rssurl; ?>" rel="self" type="application/rss+xml" />
<atom:link href="<?= $rssurl; ?>" rel="self" type="application/rss+xml" />
<description><![CDATA[<?= $description; ?>}]]></description>
<?= $extensions; ?>
<?= $body; ?>
Expand Down

0 comments on commit 598f5d0

Please sign in to comment.