forked from extern/egroupware
Don't try to go into a null entry
This commit is contained in:
parent
3ecb7a4eec
commit
7d781a56a4
@ -171,7 +171,7 @@ var et2_arrayMgr = Class.extend({
|
||||
// Abort if the current entry is not an object (associative array) and
|
||||
// we should descend further into it.
|
||||
var isObject = typeof entry === 'object';
|
||||
if (!isObject && !_referenceInto)
|
||||
if (!isObject && !_referenceInto || entry == null)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user