fix: [case sensitivity] fix

pull/9438/head
iglocska 2023-12-07 16:14:12 +01:00
parent b5b2307bd6
commit e5809fdccf
No known key found for this signature in database
GPG Key ID: BEA224F1FEF113AC
1 changed files with 2 additions and 2 deletions

View File

@ -875,7 +875,7 @@ class User extends AppModel
} catch (SendEmailException $e) {
$this->logException("Exception during sending e-mail", $e);
$log->create();
$Log->saveOrFailSilently(array(
$log->saveOrFailSilently(array(
'org' => 'SYSTEM',
'model' => 'User',
'model_id' => $user['User']['id'],
@ -892,7 +892,7 @@ class User extends AppModel
$logTitle .= $replyToLog . ' to ' . $user['User']['email'] . ' sent, titled "' . $result['subject'] . '".';
$log->create();
$Log->saveOrFailSilently(array(
$log->saveOrFailSilently(array(
'org' => 'SYSTEM',
'model' => 'User',
'model_id' => $user['User']['id'],