diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2022-10-21 13:46:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-21 13:46:44 +0200 |
commit | bff23762d14600efcdc9bec27169d531ec60f16c (patch) | |
tree | 266e1f8b6519aac39e4fda2dd638ad33d5a9fcf8 /lib/private/Support | |
parent | 7d3457ec7364bdf14386ebe797a197e5efd785da (diff) | |
download | nextcloud-server-bff23762d14600efcdc9bec27169d531ec60f16c.tar.gz nextcloud-server-bff23762d14600efcdc9bec27169d531ec60f16c.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/private/Support')
-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.')); } } } |