summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/lib/helper.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/user_ldap/lib/helper.php')
-rw-r--r--apps/user_ldap/lib/helper.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/user_ldap/lib/helper.php b/apps/user_ldap/lib/helper.php
index 45c379445af..308da3ef724 100644
--- a/apps/user_ldap/lib/helper.php
+++ b/apps/user_ldap/lib/helper.php
@@ -54,7 +54,7 @@ class Helper {
WHERE `configkey` LIKE ?
';
if($activeConfigurations) {
- $query .= ' AND `configvalue` = 1';
+ $query .= ' AND `configvalue` = \'1\'';
}
$query = \OCP\DB::prepare($query);
@@ -86,8 +86,8 @@ class Helper {
DELETE
FROM `*PREFIX*appconfig`
WHERE `configkey` LIKE ?
- AND `appid` = "user_ldap"
- AND `configkey` NOT IN ("enabled", "installed_version", "types", "bgjUpdateGroupsLastRun")
+ AND `appid` = \'user_ldap\'
+ AND `configkey` NOT IN (\'enabled\', \'installed_version\', \'types\', \'bgjUpdateGroupsLastRun\')
');
$res = $query->execute(array($prefix.'%'));