forked from extern/egroupware
Do not open an array perspective if the entry is null
This commit is contained in:
parent
60f474da12
commit
e6ac48db13
@ -816,7 +816,8 @@ var et2_widget = Class.extend({
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Check whether the manager has a namespace for the id of this object
|
// Check whether the manager has a namespace for the id of this object
|
||||||
if (typeof mgr.getEntry(this.id) === 'object')
|
var entry = mgr.getEntry(this.id);
|
||||||
|
if (typeof entry === 'object' && entry !== null)
|
||||||
{
|
{
|
||||||
// The content manager has an own node for this object, so
|
// The content manager has an own node for this object, so
|
||||||
// create an own perspective.
|
// create an own perspective.
|
||||||
|
Loading…
Reference in New Issue
Block a user