Replace $this->l10n->t() with $this->t() for Modules

This commit is contained in:
Philipp
2021-11-18 21:33:05 +01:00
parent 207662251d
commit dab9e13c69
23 changed files with 246 additions and 226 deletions

View File

@@ -84,7 +84,7 @@ class Logout extends BaseModule
if ($visitor_home) {
System::externalRedirect($visitor_home);
} else {
info($this->l10n->t('Logged out.'));
info($this->t('Logged out.'));
$this->baseUrl->redirect();
}
}