diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-10-20 21:17:36 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-10-20 21:17:36 +0000 |
commit | 182748a9c199ea64131984d7476be741dc6dd8bb (patch) | |
tree | e998c72b27caf348dd2128e284d823ee01f3458c /IkiWiki/Plugin | |
parent | f4ad79d8873c21749832c07fab6a0d601ca5a0fa (diff) | |
download | ikiwiki-182748a9c199ea64131984d7476be741dc6dd8bb.tar ikiwiki-182748a9c199ea64131984d7476be741dc6dd8bb.tar.gz |
* Change the rss feed title from the wikiname to the page title.
Overriding the page title with meta title already overrode the rss feed
tittle.
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/inline.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/inline.pm b/IkiWiki/Plugin/inline.pm index 075f70399..8bd09de40 100644 --- a/IkiWiki/Plugin/inline.pm +++ b/IkiWiki/Plugin/inline.pm @@ -284,7 +284,7 @@ sub genfeed ($$$$@) { #{{{ my $template=template($feedtype."page.tmpl", blind_cache => 1); $template->param( - title => $config{wikiname}, + title => pagetitle($page), wikiname => $config{wikiname}, pageurl => $url, content => $content, |