Bug 459293. Sites not loading - redeclaration const JSON error on console. r=brendan

This commit is contained in:
Robert Sayre 2008-10-16 01:20:57 -04:00
parent 7c6c3f79d2
commit c79f329ed4

View File

@ -904,8 +904,7 @@ js_InitJSONClass(JSContext *cx, JSObject *obj)
if (!JSON)
return NULL;
if (!JS_DefineProperty(cx, obj, js_JSON_str, OBJECT_TO_JSVAL(JSON),
JS_PropertyStub, JS_PropertyStub,
JSPROP_READONLY | JSPROP_PERMANENT))
JS_PropertyStub, JS_PropertyStub, 0))
return NULL;
if (!JS_DefineFunctions(cx, JSON, json_static_methods))