diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-07-06 15:21:27 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-10-27 14:25:19 +0200 |
commit | 7b0868ddac20c020b31310471c06b9a3a78ed5bd (patch) | |
tree | ebd4fff2720d6ae2da853471525c01f5ca3a133f | |
parent | 158e161a2745ca82dde23479a5542aa104fb24ab (diff) | |
download | nextcloud-server-7b0868ddac20c020b31310471c06b9a3a78ed5bd.tar.gz nextcloud-server-7b0868ddac20c020b31310471c06b9a3a78ed5bd.zip |
fix saving changes…
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
-rw-r--r-- | apps/user_ldap/lib/Configuration.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/Configuration.php b/apps/user_ldap/lib/Configuration.php index f455adfefb8..44b50ce6837 100644 --- a/apps/user_ldap/lib/Configuration.php +++ b/apps/user_ldap/lib/Configuration.php @@ -190,8 +190,8 @@ class Configuration { if(is_array($applied)) { $applied[] = $inputKey; // storing key as index avoids duplication, and as value for simplicity - $this->unsavedChanges[$key] = $key; } + $this->unsavedChanges[$key] = $key; } return null; } |