summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/templates
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2013-08-15 15:55:06 +0200
committerArthur Schiwon <blizzz@owncloud.com>2013-08-15 15:55:06 +0200
commit479f893f6ddef6a102b8f4ff3f68fc0b64838710 (patch)
treee43275170f0293f100dff28261011465fc9fe6a9 /apps/user_ldap/templates
parentcbfee81068d47d246deac9902f12bf63258a03e0 (diff)
downloadnextcloud-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.php2
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
}
}