Skip to content

Commit

Permalink
fixed(rss): invalid atom link href in rss channel
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalsem committed Jul 28, 2023
1 parent 45ae6bc commit 0467cf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/rss/page/default.php
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 0467cf8

Please sign in to comment.