summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap
diff options
context:
space:
mode:
authorBrice Maron <brice@bmaron.net>2013-03-02 16:26:15 +0100
committerBrice Maron <brice@bmaron.net>2013-03-02 16:26:15 +0100
commitdbb9b68331e9d1a2104a5e969b47bc893d232c1f (patch)
treee3ee300f5b41d049c6e12ec16b5b2949c2c929be /apps/user_ldap
parentd3e88e6a8c715b13f06424ad97c284151f128353 (diff)
downloadnextcloud-server-dbb9b68331e9d1a2104a5e969b47bc893d232c1f.tar.gz
nextcloud-server-dbb9b68331e9d1a2104a5e969b47bc893d232c1f.zip
Fix quoting of query for user_ldap ref #1983
Diffstat (limited to 'apps/user_ldap')
-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.'%'));