only show profiles that haven't been migrated in the Profile Selection dialog.

This commit is contained in:
sspitzer%netscape.com 1999-10-28 23:24:05 +00:00
parent f297a3c3db
commit 3eb3322f08

View File

@ -77,7 +77,10 @@ function loadElements()
for (var i = 0; i < profileList.length; i++)
{
var pvals = profileList[i].split(" - ");
AddItem("profilekids",pvals[0],pvals[0]);
// only add profiles that have been migrated
if (pvals[1] != "migrate") {
AddItem("profilekids",pvals[0],pvals[0]);
}
}
}