Author: fdmanana
Date: Sat Nov 20 15:57:39 2010
New Revision: 1037248

URL: http://svn.apache.org/viewvc?rev=1037248&view=rev
Log:
Merged revision 1037245 from trunk:

Fix recursive call: recursivelySeal is not defined within the body of the 
anonymous function declaration.

Modified:
    couchdb/branches/1.1.x/share/server/util.js

Modified: couchdb/branches/1.1.x/share/server/util.js
URL: 
http://svn.apache.org/viewvc/couchdb/branches/1.1.x/share/server/util.js?rev=1037248&r1=1037247&r2=1037248&view=diff
==============================================================================
--- couchdb/branches/1.1.x/share/server/util.js (original)
+++ couchdb/branches/1.1.x/share/server/util.js Sat Nov 20 15:57:39 2010
@@ -99,7 +99,7 @@ var Couch = {
     seal(obj);
     for (var propname in obj) {
       if (typeof obj[propname] == "object") {
-        recursivelySeal(obj[propname]);
+        arguments.callee(obj[propname]);
       }
     }
   }


Reply via email to