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

This commit is contained in:
Arthur Schiwon 2014-02-14 15:34:22 +01:00
parent 2a7509ee50
commit d88c6778ff
1 changed files with 6 additions and 0 deletions

View File

@ -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\')
');