diff options
author | Joey Hess <joey@kitenet.net> | 2011-07-29 12:54:30 +0200 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-07-29 12:54:30 +0200 |
commit | ed360d045a070569cd7bf3f9518c107b1e851cdb (patch) | |
tree | a788395317cb904d57415e0af382004d46ddf5ae /IkiWiki/Plugin | |
parent | 65a7bc4e06efdbc5eac4b5b8fe76eb0344fcab3f (diff) | |
download | ikiwiki-ed360d045a070569cd7bf3f9518c107b1e851cdb.tar ikiwiki-ed360d045a070569cd7bf3f9518c107b1e851cdb.tar.gz |
Fix escaping of html entities in tag names.
Example case was a tag with & in its name, which resulted in a malformed
rss feed.
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/tag.pm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/tag.pm b/IkiWiki/Plugin/tag.pm index ca74fef90..096c92616 100644 --- a/IkiWiki/Plugin/tag.pm +++ b/IkiWiki/Plugin/tag.pm @@ -199,8 +199,10 @@ sub pagetemplate (@) { if ($template->query(name => "categories")) { # It's an rss/atom template. Add any categories. if (defined $tags && %$tags) { - $template->param(categories => [map { category => tagname($_) }, - sort keys %$tags]); + eval q{use HTML::Entities}; + $template->param(categories => + [map { category => HTML::Entities::encode_entities(tagname($_)) }, + sort keys %$tags]); } } } |