From: justdave%syndicomm.com <>
Date: Fri, 25 Apr 2003 03:56:07 +0000 (+0000)
Subject: Bug 192661: Dependency graphs were printing bug summaries without HTML filtering.
X-Git-Tag: bugzilla-2.16.3~4
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=630b7f52a1cd4063ad0ace947d6aaa9f9d6ec12f;p=thirdparty%2Fbugzilla.git
Bug 192661: Dependency graphs were printing bug summaries without HTML filtering.
r= bbaetz, gerv
a= justdave
---
diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi
index 857075cb60..40245060c7 100755
--- a/showdependencygraph.cgi
+++ b/showdependencygraph.cgi
@@ -48,7 +48,8 @@ sub CreateImagemap {
$default = qq{\n};
}
if ($line =~ /^rectangle \((.*),(.*)\) \((.*),(.*)\) (http[^ ]*)(.*)?$/) {
- $map .= qq{\n};
+ my $bugsummary = value_quote($6);
+ $map .= qq{\n};
}
}
close MAP;