From: justdave%syndicomm.com <>
Date: Fri, 25 Apr 2003 03:55:02 +0000 (+0000)
Subject: Bug 192661: Dependency graphs were printing bug summaries without HTML filtering.
X-Git-Tag: bugzilla-2.17.4~3
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e9841817aa2bb7aef16e6499a9db2d5254a31c5f;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 fd0a75cb41..37b7c74cc4 100755
--- a/showdependencygraph.cgi
+++ b/showdependencygraph.cgi
@@ -51,7 +51,8 @@ sub CreateImagemap {
$default = qq{\n};
}
if ($line =~ /^rectangle \((.*),(.*)\) \((.*),(.*)\) (http[^ ]*)(.*)?$/) {
- $map .= qq{\n};
+ my $bugsummary = value_quote($6);
+ $map .= qq{\n};
}
}
close MAP;