mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-10 00:37:54 +02:00
Etemplate: Bugfixes
- Early exit for arrayMgr().getEntry() if nothing is found, avoids returning all data - Remove debugger from selectbox
This commit is contained in:
@ -178,6 +178,8 @@ var et2_arrayMgr = /** @class */ (function () {
|
||||
}
|
||||
// Parse the given key by removing the "]"-chars and splitting at "["
|
||||
var indexes = this.explodeKey(_key);
|
||||
if (indexes.length == 0 && _skipEmpty)
|
||||
return null;
|
||||
var entry = this.data;
|
||||
for (var i = 0; i < indexes.length; i++) {
|
||||
// Abort if the current entry is not an object (associative array) and
|
||||
|
Reference in New Issue
Block a user