summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/lib
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-06-04 09:37:04 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2014-06-04 09:37:04 +0200
commit9e31118675d425b99eff340ec7517e478ebc9fcf (patch)
tree729d23e911266a18609641864030bfa1ff58ccd5 /apps/user_ldap/lib
parent86623358f03bec638362136ff30720efa7e1be01 (diff)
parent70ae7fa091cb396f82005e17a849d3d0ac8c9751 (diff)
downloadnextcloud-server-9e31118675d425b99eff340ec7517e478ebc9fcf.tar.gz
nextcloud-server-9e31118675d425b99eff340ec7517e478ebc9fcf.zip
Merge pull request #8842 from owncloud/ldap_cli_methods
command line tools to see, modify and test existing LDAP configurations
Diffstat (limited to 'apps/user_ldap/lib')
-rw-r--r--apps/user_ldap/lib/configuration.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/configuration.php b/apps/user_ldap/lib/configuration.php
index 9c455929b4a..4cb00561b3f 100644
--- a/apps/user_ldap/lib/configuration.php
+++ b/apps/user_ldap/lib/configuration.php
@@ -272,7 +272,7 @@ class Configuration {
if(empty($value)) {
$value = '';
} else if (!is_array($value)) {
- $value = preg_split('/\r\n|\r|\n/', $value);
+ $value = preg_split('/\r\n|\r|\n|;/', $value);
if($value === false) {
$value = '';
}