diff --git a/layouts/v7/modules/Vtiger/resources/Utils.js b/layouts/v7/modules/Vtiger/resources/Utils.js index 26cae5e2d7a57232cbb14991d3e3cdb59c9af20f..799fd045db12c065efee242d14a28ed3918c9604 100644 --- a/layouts/v7/modules/Vtiger/resources/Utils.js +++ b/layouts/v7/modules/Vtiger/resources/Utils.js @@ -407,6 +407,7 @@ var vtUtils = { var isStrong = strongPasswordRegex.test(password)? true : false; return isStrong; } - return false; + // If password regex is not set - consider it as strong. + return true; }, }