Whoops; any "Open" partition was just being treated as the same as the

"default".  Which it isn't!
This commit is contained in:
terry%netscape.com 1998-10-05 17:27:44 +00:00
parent d412ac5a65
commit 2aab8a12fd

View File

@ -163,7 +163,7 @@ while (@reprow = $repquery->fetchrow()) {
}
print COMMITCHECK "sub GetT {\n";
print COMMITCHECK '($b,$_) = (@_);' . "\n";
$query = Query("select branches.name,partitions.id from partitions,branches where repositoryid = '$repid' and state != 'Open' and branches.id = branchid order by branches.name");
$query = Query("select branches.name,partitions.id from partitions,branches where repositoryid = '$repid' and branches.id = branchid order by branches.name");
$lastbranch = "";
while (@row = $query->fetchrow()) {
($branchname,$partid) = (@row);