diff options
author | Filipe David Borba Manana <fdmanana@apache.org> | 2010-11-20 15:57:39 +0000 |
---|---|---|
committer | Filipe David Borba Manana <fdmanana@apache.org> | 2010-11-20 15:57:39 +0000 |
commit | b66135d62c754bdedec9db49f93cd899099975dd (patch) | |
tree | c195750e3432dd66b7cd113d5346ce18305cfb8f /share/server | |
parent | 61734a6cd980dfb0ab9bc93f7d28d03bdd9857cc (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')
-rw-r--r-- | share/server/util.js | 2 |
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]); } } } |