www

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

commit 290581a495848bb7a7781b6a2655102fa8233fa2
parent fc8da5f8cde015d87e580a46b3f447b31e794373
Author: Simon Kornblith <simon@simonster.com>
Date:   Tue, 23 Aug 2011 03:59:11 +0000

Fix saving authors from COinS


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

diff --git a/chrome/content/zotero/xpcom/openurl.js b/chrome/content/zotero/xpcom/openurl.js @@ -464,7 +464,7 @@ Zotero.OpenURL = new function() { // Splice in the complex creator at the correct location, // accounting for previous insertions if(pushMe) { - item.creators = item.creators.splice(offset + inserted, 0, complexAu[i]); + item.creators.splice(offset + inserted, 0, complexAu[i]); inserted++; } }