mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-17 12:01:20 +02:00
Don't try to go into a null entry
This commit is contained in:
@ -171,7 +171,7 @@ var et2_arrayMgr = Class.extend({
|
|||||||
// Abort if the current entry is not an object (associative array) and
|
// Abort if the current entry is not an object (associative array) and
|
||||||
// we should descend further into it.
|
// we should descend further into it.
|
||||||
var isObject = typeof entry === 'object';
|
var isObject = typeof entry === 'object';
|
||||||
if (!isObject && !_referenceInto)
|
if (!isObject && !_referenceInto || entry == null)
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user