Author: fdmanana
Date: Sat Nov 20 15:56:40 2010
New Revision: 1037246
URL: http://svn.apache.org/viewvc?rev=1037246&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.0.x/share/server/util.js
Modified: couchdb/branches/1.0.x/share/server/util.js
URL: http://svn.apache.org/viewvc/couchdb/branches/1.0.x/share/server/util.js?rev=1037246&r1=1037245&r2=1037246&view=diff
==============================================================================
--- couchdb/branches/1.0.x/share/server/util.js (original)
+++ couchdb/branches/1.0.x/share/server/util.js Sat Nov 20 15:56:40 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]);
}
}
}
|