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
This commit is contained in:
justdave%syndicomm.com 2003-10-26 05:39:18 +00:00
Родитель 4199930d03
Коммит 193487fbd9
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

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