summaryrefslogtreecommitdiffstats
path: root/showdependencygraph.cgi
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2003-10-26 14:39:18 +0100
committerjustdave%syndicomm.com <>2003-10-26 14:39:18 +0100
commit4910d452748f49e707ff9d2650cd6eece784b62d (patch)
tree12711dbac45da628333fce030940aebb1fb7418d /showdependencygraph.cgi
parent9e7276cd4aad71817ea2c815fe544b4e46eef66d (diff)
downloadbugzilla-4910d452748f49e707ff9d2650cd6eece784b62d.tar.gz
bugzilla-4910d452748f49e707ff9d2650cd6eece784b62d.tar.xz
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
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 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");
}