diff options
author | lpsolit%gmail.com <> | 2007-10-08 03:56:23 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-10-08 03:56:23 +0000 |
commit | bbd35c12bf6b886a7768c4c6d43d8dca21f549aa (patch) | |
tree | ddfc224d04529d9a832e30940275f4e49e1c5120 /showdependencygraph.cgi | |
parent | Bug 398883: [mod_perl] Three Variable "$cgi" will not stay shared errors in c... (diff) | |
download | bugzilla-bbd35c12bf6b886a7768c4c6d43d8dca21f549aa.tar.gz bugzilla-bbd35c12bf6b886a7768c4c6d43d8dca21f549aa.tar.bz2 bugzilla-bbd35c12bf6b886a7768c4c6d43d8dca21f549aa.zip |
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-x | showdependencygraph.cgi | 2 |
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}; |