mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 08:25:03 +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:
@ -190,6 +190,7 @@ export class et2_arrayMgr
|
||||
|
||||
// Parse the given key by removing the "]"-chars and splitting at "["
|
||||
const indexes = this.explodeKey(_key);
|
||||
if(indexes.length == 0 && _skipEmpty) return null;
|
||||
|
||||
let entry = this.data;
|
||||
for (let i = 0; i < indexes.length; i++) {
|
||||
|
Reference in New Issue
Block a user