From 4910d452748f49e707ff9d2650cd6eece784b62d Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" <> Date: Sun, 26 Oct 2003 13:39:18 +0000 Subject: Bug 201294: showdependencygraph.cgi now uses the global IsOpenedState() sub instead of its own list of which states are open. This makes one less place to customize when sites change their statuses, and also includes UNCONFIRMED (which never got added when UNCONFIRMED was created). r= gerv, a= justdave --- showdependencygraph.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'showdependencygraph.cgi') diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi index b035abad4..d13f77c5d 100755 --- a/showdependencygraph.cgi +++ b/showdependencygraph.cgi @@ -160,7 +160,7 @@ foreach my $k (keys(%seen)) { push(@params, "shape=box"); } - if ($stat =~ /^(NEW|ASSIGNED|REOPENED)$/) { + if (IsOpenedState($stat)) { push(@params, "color=green"); } -- cgit v1.2.3-24-g4f1b