Description
Improvement of class org.apache.syncope.core.policy.PasswordPolicyEnforcer
Instead of
if (password.contains(word)) { throw new PasswordPolicyException("Used word(s) not permitted"); }
use
if (StringUtils.containsIgnoreCase(password, word)) {
...
}