Add lowercase 'j' to randomString() (not used for keys)

This commit is contained in:
Dan Stillman 2013-01-04 14:55:28 -05:00
parent beaaf8fc6b
commit d42b741756

View file

@ -1069,7 +1069,7 @@ Zotero.Utilities = {
**/
"randomString":function(len, chars) {
if (!chars) {
chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghiklmnopqrstuvwxyz";
chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
}
if (!len) {
len = 8;