ben%netscape.com 2000-03-03 01:46:45 +00:00
Родитель ac13e292a2
Коммит 9240cecb16
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -91,7 +91,7 @@ function onFinish()
var profName = wizardManager.WSM.PageData["newProfile1_2"].ProfileName.value;
dump("**** profName: "+ profName + "\n");
var profDir = wizardManager.WSM.PageData["newProfile1_2"].ProfileDir.value;
var profDir = wizardManager.WSM.PageData["newProfile1_2"].ProfileDir.rootFolder;
proceed = processCreateProfileData( profName, profDir );
if( proceed ) {
if( window.opener ) {
@ -144,6 +144,7 @@ function processCreateProfileData( aProfName, aProfDir )
}
}
dump("*** going to create a new profile called " + aProfName + " in folder: " + aProfDir + "\n");
profile.createNewProfile( aProfName, aProfDir );
return true;
}