inline: base feed urls on included page name
Second (forgotten) half of bb8f76a4a0
.
This ensures that the link URL and page title in the feed are the
correct ones.
master
parent
b060e691ac
commit
72c8f01b36
|
@ -440,7 +440,7 @@ sub preprocess_inline (@) {
|
|||
if (! $params{preview}) {
|
||||
writefile($rssp, $config{destdir},
|
||||
genfeed("rss",
|
||||
$config{url}."/".$rssp, $desc, $params{guid}, $params{destpage}, @feedlist));
|
||||
$config{url}."/".$rssp, $desc, $params{guid}, $params{page}, @feedlist));
|
||||
$toping{$params{destpage}}=1 unless $config{rebuild};
|
||||
$feedlinks{$params{destpage}}.=qq{<link rel="alternate" type="application/rss+xml" title="$rssdesc" href="$rssurl" />};
|
||||
}
|
||||
|
@ -450,7 +450,7 @@ sub preprocess_inline (@) {
|
|||
will_render($params{destpage}, $atomp);
|
||||
if (! $params{preview}) {
|
||||
writefile($atomp, $config{destdir},
|
||||
genfeed("atom", $config{url}."/".$atomp, $desc, $params{guid}, $params{destpage}, @feedlist));
|
||||
genfeed("atom", $config{url}."/".$atomp, $desc, $params{guid}, $params{page}, @feedlist));
|
||||
$toping{$params{destpage}}=1 unless $config{rebuild};
|
||||
$feedlinks{$params{destpage}}.=qq{<link rel="alternate" type="application/atom+xml" title="$atomdesc" href="$atomurl" />};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue