mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 00:13:35 +01:00
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
|
||||
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
|
||||
// create an own perspective.
|
||||
|
Loading…
Reference in New Issue
Block a user