From 292b068646a58b75996b5b2cdc79e8d48befc87b Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Wed, 28 Apr 2010 00:30:56 +0200 Subject: [PATCH] tagging: Fix one more HTML escaping issue. --- xtaran/tagging | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xtaran/tagging b/xtaran/tagging index 336bcc5..bde29eb 100644 --- a/xtaran/tagging +++ b/xtaran/tagging @@ -330,7 +330,8 @@ sub story { 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); + my $html_title = blosxom::blosxom_html_escape($title); + $related_stories .= qq($related_story_prefix$html_title); $related_stories .= ' (' if $show_shared_tags || $show_number_of_shared_tags; -- 2.30.2