www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 7f1677d726e6218fd8d5b979e20f02c2be1b1075
parent 1434b8aa7ac9685753e288e246d52153064a44c3
Author: Dan Stillman <dstillman@zotero.org>
Date:   Sat, 11 Oct 2008 22:11:15 +0000

Fix error on object delete


Diffstat:
Mchrome/content/zotero/xpcom/data/dataObjects.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/data/dataObjects.js b/chrome/content/zotero/xpcom/data/dataObjects.js @@ -117,7 +117,7 @@ Zotero.DataObjects = function (object, objectPlural, id, table) { this.unload = function () { var ids = Zotero.flattenArguments(arguments); for (var i=0; i<ids.length; i++) { - delete _objectCache[ids[i]]; + delete this._objectCache[ids[i]]; } } }