diff options
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"); } |