UserGroupBackendForm: Do not translate LDAP and ActiveDirectory

refs #7343
This commit is contained in:
Johannes Meyer 2015-06-05 16:40:17 +02:00
parent 840069b436
commit c800f1e6aa
1 changed files with 2 additions and 2 deletions

View File

@ -183,8 +183,8 @@ class UserGroupBackendForm extends ConfigForm
// TODO(jom): We did not think about how to configure custom group backends yet!
$backendTypes = array(
'db' => $this->translate('Database'),
'ldap' => $this->translate('LDAP'),
'msldap' => $this->translate('ActiveDirectory')
'ldap' => 'LDAP',
'msldap' => 'ActiveDirectory'
);
$backendType = isset($formData['type']) ? $formData['type'] : null;