commit 9dfca12594496e39f51cc860005e1c194df53572 parent 8f2a7524e7ea3748da4bdf52aa97c4461ec5d9e2 Author: Dan Stillman <dstillman@zotero.org> Date: Mon, 13 Oct 2008 22:33:28 +0000 Fix creator breakage from object caching changes Diffstat:
| M | chrome/content/zotero/xpcom/data/creator.js | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/chrome/content/zotero/xpcom/data/creator.js b/chrome/content/zotero/xpcom/data/creator.js @@ -66,7 +66,7 @@ Zotero.Creator.prototype.__defineSetter__('creatorDataID', function () { this._s Zotero.Creator.prototype._get = function (field) { if (this.id && !this._loaded) { - this.load(); + this.load(true); } return this['_' + field]; } @@ -82,7 +82,7 @@ Zotero.Creator.prototype._set = function (field, val) { if (this.id) { if (!this._loaded) { - this.load(); + this.load(true); } } else {