зеркало из https://github.com/mozilla/pjs.git
fixes 58679 Passing Unicode instead.
This commit is contained in:
Родитель
cbf5389bd8
Коммит
8ec262a32e
|
@ -170,7 +170,7 @@ function processCreateProfileData( aProfName, aProfDir, langcode)
|
|||
fileSpec = fileSpec.QueryInterface( Components.interfaces.nsILocalFile );
|
||||
|
||||
if (aProfDir == null)
|
||||
fileSpec.initWithUnicodePath(profile.defaultProfileParentDir.path);
|
||||
fileSpec.initWithUnicodePath(profile.defaultProfileParentDir.unicodePath);
|
||||
else
|
||||
fileSpec.initWithUnicodePath(aProfDir);
|
||||
|
||||
|
|
|
@ -91,7 +91,7 @@ function chooseProfileFolder( aRootFolder )
|
|||
var folderText = document.getElementById("ProfileDir");
|
||||
dump("*** setting rootFolderAttribute to " + aRootFolder + "\n");
|
||||
folderText.setAttribute( "rootFolder", aRootFolder );
|
||||
if ( aRootFolder != top.profile.defaultProfileParentDir.path )
|
||||
if ( aRootFolder != top.profile.defaultProfileParentDir.unicodePath )
|
||||
document.getElementById( "useDefault" ).removeAttribute("disabled");
|
||||
updateProfileName();
|
||||
}
|
||||
|
@ -144,7 +144,7 @@ function setDisplayToDefaultFolder()
|
|||
if ( fileSpec )
|
||||
fileSpec = fileSpec.QueryInterface( Components.interfaces.nsIFile );
|
||||
if ( fileSpec )
|
||||
profileDisplay.setAttribute("rootFolder", fileSpec.path );
|
||||
profileDisplay.setAttribute("rootFolder", fileSpec.unicodePath );
|
||||
|
||||
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче