From 5039334b62c027d39949a1c487321e40707ac171 Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" Date: Thu, 24 Apr 2003 20:55:02 +0000 Subject: [PATCH] Bug 192661: Dependency graphs were printing bug summaries without HTML filtering. r= bbaetz, gerv a= justdave --- webtools/bugzilla/showdependencygraph.cgi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webtools/bugzilla/showdependencygraph.cgi b/webtools/bugzilla/showdependencygraph.cgi index fd0a75cb4120..37b7c74cc4d4 100755 --- a/webtools/bugzilla/showdependencygraph.cgi +++ b/webtools/bugzilla/showdependencygraph.cgi @@ -51,7 +51,8 @@ sub CreateImagemap { $default = qq{\n}; } if ($line =~ /^rectangle \((.*),(.*)\) \((.*),(.*)\) (http[^ ]*)(.*)?$/) { - $map .= qq{bug$6\n}; + my $bugsummary = value_quote($6); + $map .= qq{bug$bugsummary\n}; } } close MAP;