Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
*
*********************************************************************/

declare(strict_types=1);

/**
* Soap object administration methods
* @author Stefan Meyer <meyer@leifos.com>
Expand Down Expand Up @@ -1047,7 +1045,7 @@ public function moveObject(string $sid, int $ref_id, int $target_id)
return $this->raiseError('No valid target given.', 'Client');
}

if(!$rbacsystem->checkAccess('move', $ref_id)) {
if (!$rbacsystem->checkAccess('move', $ref_id)) {
return $this->raiseError("No permission to move object with id: $ref_id", 'Client');
}

Expand Down
Loading