Fix so namespaces work even without content data

This commit is contained in:
Nathan Gray
2013-02-05 12:55:01 +00:00
parent a204c7fb4b
commit bbfcb19ab8
4 changed files with 7 additions and 6 deletions

View File

@ -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");
}
});