commit 8f2a7524e7ea3748da4bdf52aa97c4461ec5d9e2 parent 47285a05671d264b8d86a8d8e6dbe4bae5a5c57f Author: Dan Stillman <dstillman@zotero.org> Date: Mon, 13 Oct 2008 22:05:27 +0000 Fix error during creator add (since data caching change) Diffstat:
| M | 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 @@ -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(); } } }