Fix error during creator add (since data caching change)

This commit is contained in:
Dan Stillman 2008-10-13 22:05:27 +00:00
parent 47285a0567
commit 8f2a7524e7

View file

@ -345,8 +345,8 @@ Zotero.Creators = new function() {
var creators = getCreatorsWithData(creatorDataID);
for each(var creatorID in creators) {
if (this._objectCache[creatorID]) {
this._objectCache[creatorID].load();
if (Zotero.Creators._objectCache[creatorID]) {
Zotero.Creators._objectCache[creatorID].load();
}
}
}