From a269fceb53b96730583a853323ca96f996cf852c Mon Sep 17 00:00:00 2001 From: "reed@reedloden.com" Date: Sun, 10 Feb 2008 00:49:19 -0800 Subject: [PATCH] Bug 412324 - "Main content panel is not rendered for all WebCT/Blackboard installations" [p=crowder@fiverocks.com (Brian Crowder) r+a1.9=brendan a=blocking1.9+] --- js/src/jsexn.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/src/jsexn.c b/js/src/jsexn.c index 9e0d7f6dfb3..2f6cf70fef8 100644 --- a/js/src/jsexn.c +++ b/js/src/jsexn.c @@ -1052,8 +1052,7 @@ js_InitExceptionClasses(JSContext *cx, JSObject *obj) /* Make a constructor function for the current name. */ atom = cx->runtime->atomState.classAtoms[exceptions[i].key]; - fun = js_DefineFunction(cx, obj, atom, exceptions[i].native, 3, - JSPROP_READONLY | JSPROP_PERMANENT); + fun = js_DefineFunction(cx, obj, atom, exceptions[i].native, 3, 0); if (!fun) break;