summaryrefslogtreecommitdiffstats
path: root/showdependencygraph.cgi
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2007-10-08 05:56:23 +0200
committerlpsolit%gmail.com <>2007-10-08 05:56:23 +0200
commitbbd35c12bf6b886a7768c4c6d43d8dca21f549aa (patch)
treeddfc224d04529d9a832e30940275f4e49e1c5120 /showdependencygraph.cgi
parent49d12c8c90c1bc6c72f0b3d1324a23002e79b6d3 (diff)
downloadbugzilla-bbd35c12bf6b886a7768c4c6d43d8dca21f549aa.tar.gz
bugzilla-bbd35c12bf6b886a7768c4c6d43d8dca21f549aa.tar.xz
Bug 398838: Remove the obsolete Util::value_quote() routine - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=LpSolit
Diffstat (limited to 'showdependencygraph.cgi')
-rwxr-xr-xshowdependencygraph.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi
index fd042f436..c4d371f45 100755
--- a/showdependencygraph.cgi
+++ b/showdependencygraph.cgi
@@ -71,7 +71,7 @@ sub CreateImagemap {
# Pick up bugid from the mapdata label field. Getting the title from
# bugtitle hash instead of mapdata allows us to get the summary even
# when showsummary is off, and also gives us status and resolution.
- my $bugtitle = value_quote($bugtitles{$bugid});
+ my $bugtitle = html_quote(clean_text($bugtitles{$bugid}));
$map .= qq{<area alt="bug $bugid" name="bug$bugid" shape="rect" } .
qq{title="$bugtitle" href="$url" } .
qq{coords="$leftx,$topy,$rightx,$bottomy">\n};