Fix for bug 37939: Correct typo in string name.

This commit is contained in:
ducarroz%netscape.com 2000-05-03 01:04:19 +00:00
Родитель fd56fac159
Коммит bd3f736c43
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -905,8 +905,8 @@ function AttachFile()
// Get a local file, converted into URL format
try {
var filePicker = Components.classes["component://netscape/filespecwithui"].createInstance();
filePicker = filePicker.QueryInterface(Components.interfaces.nsIFileSpecWithUI);
currentAttachment = filePicker.chooseFile(Bundle.GetStringFromName("&chooseFileToAttach;"));
filePicker = filePicker.QueryInterface(Components.interfaces.nsIFileSpecWithUI);
currentAttachment = filePicker.chooseFile(Bundle.GetStringFromName("chooseFileToAttach"));
}
catch (ex) {
dump("failed to get the local file to attach\n");