From 8f2a7524e7ea3748da4bdf52aa97c4461ec5d9e2 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 13 Oct 2008 22:05:27 +0000 Subject: [PATCH] Fix error during creator add (since data caching change) --- chrome/content/zotero/xpcom/data/creators.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/content/zotero/xpcom/data/creators.js b/chrome/content/zotero/xpcom/data/creators.js index 58cbd8f24f..0373a10ba6 100644 --- a/chrome/content/zotero/xpcom/data/creators.js +++ b/chrome/content/zotero/xpcom/data/creators.js @@ -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(); } } }