Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2021-01-05 13:01:38 +0300
committerJulius Härtl <jus@bitgrid.net>2021-01-07 12:45:54 +0300
commitabfb72378fd7d7755fa8441dfb5aad7a336ed4fc (patch)
treeca10a95f9b63e0dcbe7c8a97073dcc462dcc7ed5 /apps
parent27e43d810f64f3b181a03dc1818ca6678ee6b306 (diff)
Hide client link in welcome mail if an empty customclient_desktop config is set
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps')
-rw-r--r--apps/settings/lib/Mailer/NewUserMailHelper.php22
1 files changed, 16 insertions, 6 deletions
diff --git a/apps/settings/lib/Mailer/NewUserMailHelper.php b/apps/settings/lib/Mailer/NewUserMailHelper.php
index 4b4428e1221..5caa441a245 100644
--- a/apps/settings/lib/Mailer/NewUserMailHelper.php
+++ b/apps/settings/lib/Mailer/NewUserMailHelper.php
@@ -143,12 +143,22 @@ class NewUserMailHelper {
} else {
$leftButtonText = $l10n->t('Go to %s', [$this->themingDefaults->getName()]);
}
- $emailTemplate->addBodyButtonGroup(
- $leftButtonText,
- $link,
- $l10n->t('Install Client'),
- $this->config->getSystemValue('customclient_desktop', 'https://nextcloud.com/install/#install-clients')
- );
+
+ $clientDownload = $this->config->getSystemValue('customclient_desktop', 'https://nextcloud.com/install/#install-clients');
+ if ($clientDownload === '') {
+ $emailTemplate->addBodyButton(
+ $leftButtonText,
+ $link
+ );
+ } else {
+ $emailTemplate->addBodyButtonGroup(
+ $leftButtonText,
+ $link,
+ $l10n->t('Install Client'),
+ $clientDownload
+ );
+ }
+
$emailTemplate->addFooter();
return $emailTemplate;