summaryrefslogtreecommitdiff
path: root/resources/views/emails
diff options
context:
space:
mode:
authorMikhail Gorbunov <naudhr@naudhr.me>2018-06-08 11:59:40 +0300
committerGreg Roach <fisharebest@gmail.com>2018-06-08 09:59:40 +0100
commitebcfb62343c2b2c13988b2f3813907e623cbc81d (patch)
treed72fb771fb1ce55a23e93bde7b30ed72ae4080cc /resources/views/emails
parent319149d67195b9a7eba14cc17d3c8064b4dea7e7 (diff)
downloadwebtrees-ebcfb62343c2b2c13988b2f3813907e623cbc81d.tar.gz
webtrees-ebcfb62343c2b2c13988b2f3813907e623cbc81d.tar.bz2
webtrees-ebcfb62343c2b2c13988b2f3813907e623cbc81d.zip
fix user admin page link in the user verify notification letter (#1755)
Diffstat (limited to 'resources/views/emails')
-rw-r--r--resources/views/emails/verify-notify-html.php4
-rw-r--r--resources/views/emails/verify-notify-text.php2
2 files changed, 3 insertions, 3 deletions
diff --git a/resources/views/emails/verify-notify-html.php b/resources/views/emails/verify-notify-html.php
index 124eb9c2bb..148d6fcf71 100644
--- a/resources/views/emails/verify-notify-html.php
+++ b/resources/views/emails/verify-notify-html.php
@@ -12,8 +12,8 @@
<?= I18N::translate('You need to review the account details.') ?>
</p>
-<a href="<?= e(route('admin_users-edit', ['user_id' => $user->getUserId()])) ?>">
- <?= e(route('admin_users-edit', ['user_id' => $user->getUserId()])) ?>
+<a href="<?= e(route('admin-users-edit', ['user_id' => $user->getUserId()])) ?>">
+ <?= e(route('admin-users-edit', ['user_id' => $user->getUserId()])) ?>
</a>
<ul>
diff --git a/resources/views/emails/verify-notify-text.php b/resources/views/emails/verify-notify-text.php
index e800326825..749937b6e4 100644
--- a/resources/views/emails/verify-notify-text.php
+++ b/resources/views/emails/verify-notify-text.php
@@ -6,7 +6,7 @@
<?= I18N::translate('You need to review the account details.') ?>
-<?= route('admin_users-edit', ['user_id' => $user->getUserId()]) ?>
+<?= route('admin-users-edit', ['user_id' => $user->getUserId()]) ?>
<?= /* I18N: You need to: */ I18N::translate('Set the status to “approved”.') ?>
<?= /* I18N: You need to: */ I18N::translate('Set the access level for each tree.') ?>