summaryrefslogtreecommitdiff
path: root/src/couchdb
diff options
context:
space:
mode:
authorFilipe David Borba Manana <fdmanana@apache.org>2010-11-21 14:05:27 +0000
committerFilipe David Borba Manana <fdmanana@apache.org>2010-11-21 14:05:27 +0000
commit3112aa0692df79d0d92b92842e5de971bfc90fa9 (patch)
treead6822dc442c573f66213300f8f5dc0ca3adc12b /src/couchdb
parentb66135d62c754bdedec9db49f93cd899099975dd (diff)
Merged revision 1037448 from trunk:
Proper verification of the roles property of a user document. Closes COUCHDB-790. Thanks Gabriel Farrell. git-svn-id: https://svn.apache.org/repos/asf/couchdb/branches/1.1.x@1037450 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/couchdb')
-rw-r--r--src/couchdb/couch_js_functions.hrl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/couchdb/couch_js_functions.hrl b/src/couchdb/couch_js_functions.hrl
index e2121aa9..347cc7b0 100644
--- a/src/couchdb/couch_js_functions.hrl
+++ b/src/couchdb/couch_js_functions.hrl
@@ -31,7 +31,7 @@
throw({forbidden: 'doc.name is required'});
}
- if (!(newDoc.roles && (typeof newDoc.roles.length !== 'undefined'))) {
+ if (newDoc.roles && !isArray(newDoc.roles)) {
throw({forbidden: 'doc.roles must be an array'});
}