Bug 311779: Connections fail when hosts/domains in 'No proxy for' are separated by semicolon, patch by Henrik Skupin <hskupin@gmail.com>, r=mconnor

This commit is contained in:
gavin%gavinsharp.com 2006-01-05 11:03:47 +00:00
Родитель deb21f364e
Коммит 676b5fffce
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -44,7 +44,7 @@ var gConnectionsDialog = {
this.doAutoconfigURLFixup();
return true;
}
if (proxyTypePref.value != 1)
return true;
@ -65,6 +65,9 @@ var gConnectionsDialog = {
}
}
var noProxiesPref = document.getElementById("network.proxy.no_proxies_on");
noProxiesPref.value = noProxiesPref.value.replace(/[;]/g,',');
return true;
},