You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clicking on "undelete" button in Backend Module leads to a JS error in console, if the DN contains multiple backslashes.
The user row is NOT imported and no visible feedback is given to the user.
The solution is probably to use "replaceAll" rather than "replace":
dn = dn.replace('\\', '\\\\');
dn = dn.replaceAll('\\', '\\\\');
The text was updated successfully, but these errors were encountered:
Clicking on "undelete" button in Backend Module leads to a JS error in console, if the DN contains multiple backslashes.
The user row is NOT imported and no visible feedback is given to the user.
The solution is probably to use "replaceAll" rather than "replace":
dn = dn.replace('\\', '\\\\');
dn = dn.replaceAll('\\', '\\\\');
The text was updated successfully, but these errors were encountered: