Merge pull request #7205 from owncloud/fix_7153

LDAP: prevent other configuration from being deleted when deleting the f...
remotes/origin/ldap_group_count
blizzz 13 years ago
commit 984ea7b3ff
  1. 6
      apps/user_ldap/lib/helper.php

@ -118,10 +118,16 @@ class Helper {
return false;
}
$saveOtherConfigurations = '';
if(empty($prefix)) {
$saveOtherConfigurations = 'AND `Configkey` NOT LIKE \'s%\'';
}
$query = \OCP\DB::prepare('
DELETE
FROM `*PREFIX*appconfig`
WHERE `configkey` LIKE ?
'.$saveOtherConfigurations.'
AND `appid` = \'user_ldap\'
AND `configkey` NOT IN (\'enabled\', \'installed_version\', \'types\', \'bgjUpdateGroupsLastRun\')
');

Loading…
Cancel
Save