Bug 192661: Dependency graphs were printing bug summaries without HTML filtering.

r= bbaetz, gerv
a= justdave


git-svn-id: svn://10.0.0.236/trunk@141755 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
justdave%syndicomm.com
2003-04-24 20:56:07 +00:00
parent 8b2db2db3d
commit ec79b9cda4

View File

@@ -51,7 +51,8 @@ sub CreateImagemap {
$default = qq{<area alt="" shape="default" href="$1">\n};
}
if ($line =~ /^rectangle \((.*),(.*)\) \((.*),(.*)\) (http[^ ]*)(.*)?$/) {
$map .= qq{<area alt="bug$6" name="bug$6" shape="rect" href="$5" coords="$1,$4,$3,$2">\n};
my $bugsummary = value_quote($6);
$map .= qq{<area alt="bug$bugsummary" name="bug$bugsummary" shape="rect" href="$5" coords="$1,$4,$3,$2">\n};
}
}
close MAP;