Be more kindly :-)

This commit is contained in:
Philipp 2022-11-27 01:27:44 +01:00
parent 50316bbb80
commit e6933a28da
No known key found for this signature in database
GPG Key ID: 24A7501396EB5432
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ class Browser extends BaseModule
protected function content(array $request = []): string
{
if (!$this->session->getLocalUserId()) {
throw new UnauthorizedException($this->t('Permission denied.'));
throw new UnauthorizedException($this->t('You need to be logged in to access this page.'));
}
// Needed to match the correct template in a module that uses a different theme than the user/site/default

View File

@ -56,7 +56,7 @@ class Browser extends BaseModule
protected function content(array $request = []): string
{
if (!$this->session->getLocalUserId()) {
throw new UnauthorizedException($this->t('Permission denied.'));
throw new UnauthorizedException($this->t('You need to be logged in to access this page.'));
}
// Needed to match the correct template in a module that uses a different theme than the user/site/default