Add lowercase 'j' to randomString() (not used for keys)
This commit is contained in:
parent
beaaf8fc6b
commit
d42b741756
1 changed files with 1 additions and 1 deletions
|
@ -1069,7 +1069,7 @@ Zotero.Utilities = {
|
|||
**/
|
||||
"randomString":function(len, chars) {
|
||||
if (!chars) {
|
||||
chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghiklmnopqrstuvwxyz";
|
||||
chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
|
||||
}
|
||||
if (!len) {
|
||||
len = 8;
|
||||
|
|
Loading…
Reference in a new issue