Skip to content
This repository was archived by the owner on Aug 15, 2023. It is now read-only.

Commit 2b601c9

Browse files
author
Helmut Hummel
committed
[BUGFIX] Fix remove actions in database API
1 parent eed1fb8 commit 2b601c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Classes/Service/DatabaseApiService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ protected function getRequestKeys(array $update, array $remove) {
180180
}
181181

182182
foreach ($removeActions as $removeAction) {
183-
if (isset($remove[$removeAction]) && is_array($update[$removeAction])) {
183+
if (isset($remove[$removeAction]) && is_array($remove[$removeAction])) {
184184
$tmpKeys += array_keys($remove[$removeAction]);
185185
}
186186
}

0 commit comments

Comments
 (0)