checking in right patch for bug 63117 - numbers in prefs accepted in octal when they start with 0, in hex when they start with 0x

r=neil sr=alecf, patch by eddyk@netscape.com/durbacher@gmx.de
This commit is contained in:
cbiesinger%web.de 2006-05-17 02:36:55 +00:00
Родитель b7505d6cbf
Коммит 7da2cedce8
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -242,7 +242,7 @@ nsPrefWindow.prototype =
value = !value;
break;
case "int":
value = parseInt(value);
value = parseInt(value, 10);
break;
case "color":
if( toString(value) == "" )