diff options
Diffstat (limited to 'apps/user_ldap/lib/Configuration.php')
-rw-r--r-- | apps/user_ldap/lib/Configuration.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_ldap/lib/Configuration.php b/apps/user_ldap/lib/Configuration.php index 54dfe6779ba..80b353360c3 100644 --- a/apps/user_ldap/lib/Configuration.php +++ b/apps/user_ldap/lib/Configuration.php @@ -161,7 +161,7 @@ class Configuration { break; case 'homeFolderNamingRule': $trimmedVal = trim($val); - if(!empty($trimmedVal) && strpos($val, 'attr:') === false) { + if ($trimmedVal !== '' && strpos($val, 'attr:') === false) { $val = 'attr:'.$trimmedVal; } break; @@ -309,7 +309,7 @@ class Configuration { foreach($value as $key => $val) { if(is_string($val)) { $val = trim($val); - if(!empty($val)) { + if ($val !== '') { //accidental line breaks are not wanted and can cause // odd behaviour. Thus, away with them. $finalValue[] = $val; |