Skip to content

Commit

Permalink
Merge pull request phpbb#3427 from prototech/ticket/13551
Browse files Browse the repository at this point in the history
[ticket/13551] Fix incorrectly named template variable: AUTH_LDAP_DN

* prototech/ticket/13551:
  [ticket/13551] Fix incorrectly named template variable: AUTH_LDAP_DN
  • Loading branch information
bantu committed Feb 22, 2015
2 parents 702a51b + 71d3ddc commit d152bbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phpBB/phpbb/auth/provider/ldap.php
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ public function get_acp_template($new_config)
return array(
'TEMPLATE_FILE' => 'auth_provider_ldap.html',
'TEMPLATE_VARS' => array(
'AUTH_LDAP_DN' => $new_config['ldap_base_dn'],
'AUTH_LDAP_BASE_DN' => $new_config['ldap_base_dn'],
'AUTH_LDAP_EMAIL' => $new_config['ldap_email'],
'AUTH_LDAP_PASSORD' => $new_config['ldap_password'],
'AUTH_LDAP_PORT' => $new_config['ldap_port'],
Expand Down

0 comments on commit d152bbc

Please sign in to comment.