Really get rid of ignored builds.

This commit is contained in:
slamm%netscape.com 1999-02-12 21:31:03 +00:00
Родитель c062fd176c
Коммит da458fda87
1 изменённых файлов: 6 добавлений и 6 удалений

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

@ -127,13 +127,13 @@ Go back to the Error Log</a>
for $other_build (@names){
if( $other_build ne "" ){
if( $other_build eq $buildname ){
print "<INPUT TYPE=checkbox NAME=\"$other_build\" CHECKED>";
} else {
print "<INPUT TYPE=checkbox NAME=\"$other_build\">";
}
if (not exists ${$ignore_builds}{$other_build}) {
if( $other_build eq $buildname ){
print "<INPUT TYPE=checkbox NAME=\"$other_build\" CHECKED>";
} else {
print "<INPUT TYPE=checkbox NAME=\"$other_build\">";
}
print "$other_build<BR>\n";
} #EndIf
}