X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fblosxom-plugins.git;a=blobdiff_plain;f=xtaran%2Ftagging;fp=xtaran%2Ftagging;h=336bcc52e2f2606db8c7a4703ab7fdd50de7cf19;hp=988f3229df56f33e02650ab308c700a74e4bf05c;hb=848567e3d8881dd1873c346567d5a03e0ddb7fa0;hpb=2f4ac8d0f79206acaeae4efb2c6b65f80d5823c3 diff --git a/xtaran/tagging b/xtaran/tagging index 988f322..336bcc5 100644 --- a/xtaran/tagging +++ b/xtaran/tagging @@ -328,9 +328,9 @@ sub story { my $shared_tags_list = join(', ', @{$other_stories{$other}}); my $shared_tags_number = scalar(@{$other_stories{$other}}); - my $attr_title = "$shared_tags_number $shared_tags_text: $shared_tags_list"; - - $related_stories .= qq($related_story_prefix$title); + my $attr_title = blosxom::blosxom_html_escape("$shared_tags_number $shared_tags_text: $shared_tags_list"); + my $attr_href = blosxom::blosxom_html_escape($opath); + $related_stories .= qq($related_story_prefix$title); $related_stories .= ' (' if $show_shared_tags || $show_number_of_shared_tags; @@ -338,7 +338,7 @@ sub story { if $show_number_of_shared_tags; $related_stories .= $shared_tags_text if $show_shared_tags || $show_number_of_shared_tags; - $related_stories .= ": $shared_tags_list" + $related_stories .= blosxom::blosxom_html_escape(": $shared_tags_list") if $show_shared_tags; $related_stories .= ')' if $show_shared_tags || $show_number_of_shared_tags;