Skip to content

Commit

Permalink
[BUGFIX] Fix configuration fetching for admin edit notify mails
Browse files Browse the repository at this point in the history
  • Loading branch information
pixeldesu committed Nov 8, 2024
1 parent 31fff03 commit 1c10e9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Classes/Controller/AbstractController.php
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,9 @@ public function updateAllConfirmed(User $user)
'updateNotify',
StringUtility::makeEmailArray(
ConfigurationUtility::getValue(
'edit/email/createUserNotify/notifyAdmin/receiver/email/value',
'edit./email./notifyAdmin./receiver./email./value',
$this->config
) ?: ConfigurationUtility::getValue('edit/notifyAdmin', $this->config),
) ?: ConfigurationUtility::getValue('edit./notifyAdmin', $this->config),
$this->settings['edit']['email']['notifyAdmin']['receiver']['name']['value'] ?? null
),
StringUtility::makeEmailArray($user->getEmail(), $user->getUsername()),
Expand Down

0 comments on commit 1c10e9c

Please sign in to comment.