diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2022-10-21 13:46:44 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-10-24 10:06:57 +0200 |
commit | 2228a7b37497a7b51c35f55fae494b4e649b5d0f (patch) | |
tree | 5da8846b72b64e49a006fe588fe913f624bf7dd1 /lib | |
parent | 6bedcfe1f56f9a43386388cdbdbd863902cbc3bc (diff) | |
download | nextcloud-server-2228a7b37497a7b51c35f55fae494b4e649b5d0f.tar.gz nextcloud-server-2228a7b37497a7b51c35f55fae494b4e649b5d0f.zip |
extended hint message
Co-authored-by: Simon L. <szaimen@e.mail.de>
Signed-off-by: blizzz <blizzz@arthur-schiwon.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Support/Subscription/Assertion.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Support/Subscription/Assertion.php b/lib/private/Support/Subscription/Assertion.php index 9acd3f878c3..9b77e875944 100644 --- a/lib/private/Support/Subscription/Assertion.php +++ b/lib/private/Support/Subscription/Assertion.php @@ -49,7 +49,7 @@ class Assertion implements IAssertion { public function createUserIsLegit(): void { if ($this->registry->delegateIsHardUserLimitReached($this->notificationManager)) { $l = $this->l10nFactory->get('lib'); - throw new HintException($l->t('The user limit has been reached and the user was not created.')); + throw new HintException($l->t('The user limit has been reached and the user was not created. Check your notifications to learn more.')); } } } |