Bug 201294: showdependencygraph.cgi now uses the global IsOpenedState() sub…

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
parent 9e7276cd
......@@ -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");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment