LDAP: prevent other configuration from being deleted when deleting the first one which has an empty prefix for historical reasons

remotes/origin/ldap_group_count
Arthur Schiwon 12 years ago
parent 2a7509ee50
commit d88c6778ff
  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