Be more kindly :-)

This commit is contained in:
Philipp Holzer 2022-11-27 01:27:44 +01:00
parent 50316bbb80
commit e6933a28da
Signed by: nupplaPhil
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