Bug 326873 - ChatZilla should be less picky about filenames

r=silver@warwickcompsoc.co.uk (James Ross)
ChatZilla Only.
This commit is contained in:
gijskruitbosch%gmail.com 2006-12-07 11:35:20 +00:00
Родитель 9d7659e186
Коммит 802576b33c
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -474,7 +474,8 @@ function encodeChar(ch)
function escapeFileName(fileName)
{
return fileName.replace(/[^\w\d.,#\-_%]/g, encodeChar);
// Escape / \ : * ? " < > | so they don't cause trouble.
return fileName.replace(/[\/\\\:\*\?"<>\|]/g, encodeChar);
}
function getCommonPfx (list, lcFn)