summaryrefslogtreecommitdiff
path: root/share/server/util.js
diff options
context:
space:
mode:
authorFilipe David Borba Manana <fdmanana@apache.org>2010-11-20 15:57:39 +0000
committerFilipe David Borba Manana <fdmanana@apache.org>2010-11-20 15:57:39 +0000
commitb66135d62c754bdedec9db49f93cd899099975dd (patch)
treec195750e3432dd66b7cd113d5346ce18305cfb8f /share/server/util.js
parent61734a6cd980dfb0ab9bc93f7d28d03bdd9857cc (diff)
Merged revision 1037245 from trunk:
Fix recursive call: recursivelySeal is not defined within the body of the anonymous function declaration. git-svn-id: https://svn.apache.org/repos/asf/couchdb/branches/1.1.x@1037248 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/server/util.js')
-rw-r--r--share/server/util.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/server/util.js b/share/server/util.js
index b1da6d60..71a36a29 100644
--- a/share/server/util.js
+++ b/share/server/util.js
@@ -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]);
}
}
}