diff options
author | justdave%syndicomm.com <> | 2003-10-26 13:39:18 +0000 |
---|---|---|
committer | justdave%syndicomm.com <> | 2003-10-26 13:39:18 +0000 |
commit | 4910d452748f49e707ff9d2650cd6eece784b62d (patch) | |
tree | 12711dbac45da628333fce030940aebb1fb7418d /showdependencygraph.cgi | |
parent | 9e7276cd4aad71817ea2c815fe544b4e46eef66d (diff) | |
download | bugs-4910d452748f49e707ff9d2650cd6eece784b62d.tar bugs-4910d452748f49e707ff9d2650cd6eece784b62d.tar.gz bugs-4910d452748f49e707ff9d2650cd6eece784b62d.tar.bz2 bugs-4910d452748f49e707ff9d2650cd6eece784b62d.tar.xz bugs-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-x | showdependencygraph.cgi | 2 |
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"); } |