Bug 63117 Numbers in prefs accepted in octal when started with 0 and hexadecimal when started with 0x

patch by eddyk@netscape.com/durbacher@gmx.de, r=neil sr=alecf
This commit is contained in:
cbiesinger%web.de 2004-02-04 00:58:23 +00:00
Родитель 55c72b241f
Коммит e33a7da3bb
1 изменённых файлов: 6 добавлений и 1 удалений

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

@ -242,7 +242,12 @@ nsPrefWindow.prototype =
value = !value;
break;
case "int":
value = parseInt(value);
if( value.match(/[^\d\s]/) )
{ // reload old value to avoid setting an invalid one
value = this.getPref(preftype, itemObject.prefstring)
break;
}
value = parseInt(value, 10);
break;
case "color":
if( toString(value) == "" )