fix: [correlation] exclusion cleaning was broken for noacl correlations, fixes #8899

pull/9570/head
iglocska 2023-12-14 12:45:00 +01:00
parent 78efee02da
commit 100702244b
No known key found for this signature in database
GPG Key ID: BEA224F1FEF113AC
2 changed files with 2 additions and 2 deletions

View File

@ -626,6 +626,6 @@ class DefaultCorrelationBehavior extends ModelBehavior
]);
$Model->deleteAll([
'Correlation.value_id' => $valueIds
]);
], false);
}
}

View File

@ -416,6 +416,6 @@ class NoAclCorrelationBehavior extends ModelBehavior
]);
$Model->deleteAll([
'Correlation.value_id' => $valueIds
]);
], false);
}
}