diff options
Diffstat (limited to 'apps/user_ldap/js')
-rw-r--r-- | apps/user_ldap/js/wizard/wizardTabLoginFilter.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/js/wizard/wizardTabLoginFilter.js b/apps/user_ldap/js/wizard/wizardTabLoginFilter.js index 3acb13ace21..5e9f0728b0e 100644 --- a/apps/user_ldap/js/wizard/wizardTabLoginFilter.js +++ b/apps/user_ldap/js/wizard/wizardTabLoginFilter.js @@ -140,7 +140,7 @@ OCA = OCA || {}; if(result.status === 'success') { var usersFound = parseInt(result.changes.ldap_test_loginname, 10); if(usersFound < 1) { - var filter = result.changes.ldap_test_effective_filter; + var filter = $('<p>').text(result.changes.ldap_test_effective_filter).html(); message = t('user_ldap', 'User not found. Please check your login attributes and username. Effective filter (to copy-and-paste for command line validation): <br/>' + filter); console.warn(filter); isHtml = true; |