From 9c80e9ab937d4c0e957794abfed30d249a32d2b7 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sun, 20 Jan 2013 14:46:07 -0500 Subject: [PATCH] Fix sync error (since beaaf8fc) --- chrome/content/zotero/xpcom/id.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/id.js b/chrome/content/zotero/xpcom/id.js index 17c85a8ac..c444dc2a7 100644 --- a/chrome/content/zotero/xpcom/id.js +++ b/chrome/content/zotero/xpcom/id.js @@ -93,7 +93,7 @@ Zotero.ID_Tracker = function () { } - this.isValidKey = function () { + this.isValidKey = function (value) { var re = /^[23456789ABCDEFGHIJKLMNPQRSTUVWXYZ]{8}$/ return re.test(value); }