1
0
Fork 0

Bug fix 3.3/issue 4582 (#4986)

This commit is contained in:
Heiko 2018-04-13 10:56:46 +02:00 committed by Jan
parent 51b036be9f
commit d4cea1781a
2 changed files with 2 additions and 11 deletions

View File

@ -1,6 +1,8 @@
v3.3.8 (XXXX-XX-XX)
-------------------
* fix issue #4582: UI query editor now supports usage of empty string as bind parameter value
* fixed internal issue #2148: Number of documents found by filter is misleading in web UI
* added startup option `--database.required-directory-state`

View File

@ -1582,17 +1582,6 @@
return quit;
}
var keys = [];
_.each(this.bindParamTableObj, function (val, key) {
if (val === '') {
quit = true;
keys.push(key);
}
});
if (keys.length > 0) {
arangoHelper.arangoError('Bind Parameter', JSON.stringify(keys) + ' not defined.');
}
return quit;
},