Skip to content

Commit

Permalink
[BUGFIX] coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
sbusemann committed May 9, 2024
1 parent e195a6c commit 42904ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Classes/Controller/NewController.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,14 +144,14 @@ public function confirmCreateRequestAction(int $user, string $hash, string $stat
// todo refactor this into a better workflow
if ($status == 'userConfirmationRefused') {
if (ConfigurationUtility::getValue(
'new./email./createUserConfirmation./confirmUserConfirmationRefused',
$this->config
) == '1') {
'new./email./createUserConfirmation./confirmUserConfirmationRefused',
$this->config
) == '1') {
$this->view->assignMultiple(
[
'user' => $user,
'status' => 'confirmDeletion',
'hash' => $hash
'hash' => $hash,
]
);
$this->assignForAll();
Expand Down

0 comments on commit 42904ac

Please sign in to comment.