diff options
author | justdave%syndicomm.com <> | 2003-04-25 03:55:02 +0000 |
---|---|---|
committer | justdave%syndicomm.com <> | 2003-04-25 03:55:02 +0000 |
commit | e9841817aa2bb7aef16e6499a9db2d5254a31c5f (patch) | |
tree | 1fa9328ccc06000e3ab199cf90df1976659208ed /showdependencygraph.cgi | |
parent | 29021b187f042f023584dd3986c086ca68bef0a2 (diff) | |
download | bugs-e9841817aa2bb7aef16e6499a9db2d5254a31c5f.tar bugs-e9841817aa2bb7aef16e6499a9db2d5254a31c5f.tar.gz bugs-e9841817aa2bb7aef16e6499a9db2d5254a31c5f.tar.bz2 bugs-e9841817aa2bb7aef16e6499a9db2d5254a31c5f.tar.xz bugs-e9841817aa2bb7aef16e6499a9db2d5254a31c5f.zip |
Bug 192661: Dependency graphs were printing bug summaries without HTML filtering.
r= bbaetz, gerv
a= justdave
Diffstat (limited to 'showdependencygraph.cgi')
-rwxr-xr-x | showdependencygraph.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi index fd0a75cb4..37b7c74cc 100755 --- a/showdependencygraph.cgi +++ b/showdependencygraph.cgi @@ -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; |