diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-03-04 17:08:29 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-03-04 17:08:29 +0100 |
commit | 1da90fab848686028c0e41c45a659678d5774ddf (patch) | |
tree | cf78fcb9dec3f905a8e367fe466a0e7b02eaf25f /apps | |
parent | 9986b470ee337424eb960541d28620b454dfee3f (diff) | |
parent | fd5dec029894a5266f41dbaa6632b618bbf92c40 (diff) | |
download | nextcloud-server-1da90fab848686028c0e41c45a659678d5774ddf.tar.gz nextcloud-server-1da90fab848686028c0e41c45a659678d5774ddf.zip |
Merge pull request #7508 from owncloud/ldap-configkeycasing
Fixed configkey casing for PostgreSQL
Diffstat (limited to 'apps')
-rw-r--r-- | apps/user_ldap/lib/helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/helper.php b/apps/user_ldap/lib/helper.php index 7de7fe8667f..b5955cb2abb 100644 --- a/apps/user_ldap/lib/helper.php +++ b/apps/user_ldap/lib/helper.php @@ -120,7 +120,7 @@ class Helper { $saveOtherConfigurations = ''; if(empty($prefix)) { - $saveOtherConfigurations = 'AND `Configkey` NOT LIKE \'s%\''; + $saveOtherConfigurations = 'AND `configkey` NOT LIKE \'s%\''; } $query = \OCP\DB::prepare(' |