mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-10 00:37:54 +02:00
Fix so namespaces work even without content data
This commit is contained in:
@ -381,7 +381,8 @@ var et2_readonlysArrayMgr = et2_arrayMgr.extend({
|
||||
}
|
||||
|
||||
// Otherwise return the default value
|
||||
return (typeof this.getEntry("__ALL__") != "undefined");
|
||||
entry = this.getEntry("__ALL__");
|
||||
return entry !== null && (typeof entry != "undefined");
|
||||
}
|
||||
|
||||
});
|
||||
|
Reference in New Issue
Block a user