diff options
author | Joey Hess <joey@kitenet.net> | 2011-01-24 17:01:01 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-01-24 17:01:01 -0400 |
commit | 80452eba92ab4141bf78de90d36015eabf37777a (patch) | |
tree | 6d2630d79966bdb26ca8c38cdf6e1a23e37b5d9d | |
parent | 1640d12102c75d2214ab5117818e90182ba1a9ae (diff) |
inline: Fix regression in feed titles. Closes: #610878 (Thanks, Paul Wise)
-rw-r--r-- | IkiWiki/Plugin/inline.pm | 4 | ||||
-rw-r--r-- | debian/changelog | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/inline.pm b/IkiWiki/Plugin/inline.pm index d89e14197..285077204 100644 --- a/IkiWiki/Plugin/inline.pm +++ b/IkiWiki/Plugin/inline.pm @@ -294,11 +294,11 @@ sub preprocess_inline (@) { if ($feeds) { if ($rss) { $rssurl=abs2rel($feedbase."rss".$feednum, dirname(htmlpage($params{destpage}))); - $rssdesc = gettext("%s (RSS feed)", $desc); + $rssdesc = sprintf(gettext("%s (RSS feed)"), $desc); } if ($atom) { $atomurl=abs2rel($feedbase."atom".$feednum, dirname(htmlpage($params{destpage}))); - $atomdesc = gettext("%s (Atom feed)", $desc); + $atomdesc = sprintf(gettext("%s (Atom feed)"), $desc); } } diff --git a/debian/changelog b/debian/changelog index ae2ff779e..4e16140cb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,8 @@ ikiwiki (3.20110124) UNRELEASED; urgency=low * comments: Fix commenting, broken by security fix. * blogspam: Don't check modifications from admins for spam, and also allow the blogspam_pagespec to do other matches against who the user is. + * inline: Fix regression in feed titles. Closes: #610878 + (Thanks, Paul Wise) -- Joey Hess <joeyh@debian.org> Mon, 24 Jan 2011 16:56:05 -0400 |