commit d42b741756a263d89fcca31eabadcdaccdd9f429 parent beaaf8fc6b31b8471bcf13f169611b92212f7e8b Author: Dan Stillman <dstillman@zotero.org> Date: Fri, 4 Jan 2013 14:55:28 -0500 Add lowercase 'j' to randomString() (not used for keys) Diffstat:
| M | chrome/content/zotero/xpcom/utilities.js | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/utilities.js b/chrome/content/zotero/xpcom/utilities.js @@ -1069,7 +1069,7 @@ Zotero.Utilities = { **/ "randomString":function(len, chars) { if (!chars) { - chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghiklmnopqrstuvwxyz"; + chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; } if (!len) { len = 8;