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 4b94eeb519
commit cf960e8c35

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();
}
}
}