diff options
author | Luka Trovic <luka@nextcloud.com> | 2023-09-11 18:22:07 +0200 |
---|---|---|
committer | Luka Trovic <luka@nextcloud.com> | 2023-11-21 10:10:37 +0100 |
commit | b134e1cbc754dcfa8ad5359009974659c27f7f79 (patch) | |
tree | d41652a34716981593e559d2d76e90ec9056ae08 /core/templates | |
parent | 24c2c09aeae1e99f9d6f1dff0103db3b6198cb4f (diff) | |
download | nextcloud-server-b134e1cbc754dcfa8ad5359009974659c27f7f79.tar.gz nextcloud-server-b134e1cbc754dcfa8ad5359009974659c27f7f79.zip |
feat: update sign up link in share pages
Signed-off-by: Luka Trovic <luka@nextcloud.com>
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/layout.public.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/layout.public.php b/core/templates/layout.public.php index 8ebbef828b4..cd26fcba6de 100644 --- a/core/templates/layout.public.php +++ b/core/templates/layout.public.php @@ -110,7 +110,7 @@ if (isset($template) && $template->getActionCount() !== 0) { if ($_['showSimpleSignUpLink']) { ?> <p> - <a href="https://nextcloud.com/signup/" target="_blank" rel="noreferrer noopener"> + <a href="<?php p($_['signUpLink']); ?>" target="_blank" rel="noreferrer noopener"> <?php p($l->t('Get your own free account')); ?> </a> </p> |