diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2020-11-06 12:09:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-06 12:09:58 +0100 |
commit | 8547934e2089c076e527d1bc2e2dad7bdb97f64b (patch) | |
tree | 331987020f8d2af32c19f99071681f005b96aaf3 | |
parent | c5b6e4bc095725223346da9f77180da4f6adb7b9 (diff) | |
download | nextcloud-server-8547934e2089c076e527d1bc2e2dad7bdb97f64b.tar.gz nextcloud-server-8547934e2089c076e527d1bc2e2dad7bdb97f64b.zip |
Correctly place the array type
-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 2cd8b528d0b..c1e3bed674e 100644 --- a/apps/user_ldap/lib/Helper.php +++ b/apps/user_ldap/lib/Helper.php @@ -170,7 +170,7 @@ class Helper { 'installed_version', 'types', 'bgjUpdateGroupsLastRun', - ]), IQueryBuilder::PARAM_STR_ARRAY)); + ], IQueryBuilder::PARAM_STR_ARRAY))); if (empty($prefix)) { $query->andWhere($query->expr()->notLike('configkey', $query->createNamedParameter('s%'))); |