diff options
author | Christoph (Sheogorath) Kern | 2018-01-29 15:59:27 +0100 |
---|---|---|
committer | GitHub | 2018-01-29 15:59:27 +0100 |
commit | adc781f7e3bcc8611df8f661880258f136d15767 (patch) | |
tree | c22c7e2d048742cbe6cb3acd177ff07174e40677 /public/views/shared | |
parent | e18e05541c52908034b672a2abe79a1c51df5607 (diff) | |
parent | e44751b3f136e7a438b1379a8d865bdff6cf235e (diff) |
Merge pull request #704 from SISheogorath/fix/ldapProviderName
Fix ldap provider name in template
Diffstat (limited to '')
-rw-r--r-- | public/views/shared/signin-modal.ejs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/views/shared/signin-modal.ejs b/public/views/shared/signin-modal.ejs index 7b44cfb0..ce01c739 100644 --- a/public/views/shared/signin-modal.ejs +++ b/public/views/shared/signin-modal.ejs @@ -52,7 +52,7 @@ <hr> <% }%> <% if(ldap) { %> - <h4>Via <% if (ldap.providerName) { %> <%- ldap.providerName %> (LDAP) <% } else { %> LDAP <% } %></h4> + <h4>Via <% if (ldapProviderName) { %> <%= ldapProviderName %> (LDAP) <% } else { %> LDAP <% } %></h4> <form data-toggle="validator" role="form" class="form-horizontal" method="post" enctype="application/x-www-form-urlencoded"> <div class="form-group"> <div class="col-sm-12"> |