Fix: Remove extra space in translation key (#28611)

# Fix: Remove extra space in translation key

Fix the extra space in the key 'ImpossibleToContactAuthority' when calling trans.
This commit is contained in:
MDW 2024-03-04 18:26:57 +01:00 committed by GitHub
parent e66e77e4a0
commit 6878a834a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -316,7 +316,7 @@ class BlockedLogAuthority
if ($res['content'] === 'blockalreadyadded' || $res['content'] === 'blockadded') {
$block->setCertified();
} else {
$this->error = $langs->trans('ImpossibleToContactAuthority ', $url);
$this->error = $langs->trans('ImpossibleToContactAuthority', $url);
return -1;
}
}