diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2013-08-15 15:55:06 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2013-08-15 15:55:06 +0200 |
commit | 479f893f6ddef6a102b8f4ff3f68fc0b64838710 (patch) | |
tree | e43275170f0293f100dff28261011465fc9fe6a9 /apps/user_ldap/templates | |
parent | cbfee81068d47d246deac9902f12bf63258a03e0 (diff) | |
download | nextcloud-server-479f893f6ddef6a102b8f4ff3f68fc0b64838710.tar.gz nextcloud-server-479f893f6ddef6a102b8f4ff3f68fc0b64838710.zip |
LDAP: Show Host name in configuration drop down
Diffstat (limited to 'apps/user_ldap/templates')
-rw-r--r-- | apps/user_ldap/templates/settings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php index c051ea5cfe1..e214d57fb1d 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -24,7 +24,7 @@ $sel = ' selected'; foreach($_['serverConfigurationPrefixes'] as $prefix) { ?> - <option value="<?php p($prefix); ?>"<?php p($sel); ?>><?php p($i++); ?>. Server</option> + <option value="<?php p($prefix); ?>"<?php p($sel); $sel = ''; ?>><?php p($i++); ?>. Server: <?php p($_['serverConfigurationHosts'][$prefix]); ?></option> <?php } } |