From f339e088945c8ef4a3a2b5a5af003de279ac5fd4 Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Wed, 10 Oct 2012 15:31:48 -0400 Subject: [PATCH] Fix typo --- chrome/content/zotero/recognizePDF.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/recognizePDF.js b/chrome/content/zotero/recognizePDF.js index 5ce790b4d..a791f23a7 100644 --- a/chrome/content/zotero/recognizePDF.js +++ b/chrome/content/zotero/recognizePDF.js @@ -562,7 +562,7 @@ Zotero_RecognizePDF.Recognizer.prototype._selectItems = function(/**Zotero.Trans /**Object*/ items, /**Function**/ callback) { for(var i in items) { var obj = {}; - obj[i] = items; + obj[i] = items[i]; callback(obj); return; }