aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2003-10-26 13:39:18 +0000
committerjustdave%syndicomm.com <>2003-10-26 13:39:18 +0000
commit4910d452748f49e707ff9d2650cd6eece784b62d (patch)
tree12711dbac45da628333fce030940aebb1fb7418d /showdependencygraph.cgi
parentBug 218386: add 'view-source:' to the link of URL protocols which automatcaly... (diff)
downloadbugzilla-4910d452748f49e707ff9d2650cd6eece784b62d.tar.gz
bugzilla-4910d452748f49e707ff9d2650cd6eece784b62d.tar.bz2
bugzilla-4910d452748f49e707ff9d2650cd6eece784b62d.zip
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");
}