Fix quoting of query for user_ldap ref #1983

remotes/origin/stable5
Brice Maron 13 years ago
parent d3e88e6a8c
commit dbb9b68331
  1. 6
      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.'%'));

Loading…
Cancel
Save