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

r= bbaetz, gerv
a= justdave
This commit is contained in:
justdave%syndicomm.com 2003-04-24 20:55:02 +00:00
parent 8e6acf702f
commit 5039334b62

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;