From 1e8dd96938ed1db7f4ab65289348ef01a3ea2495 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 4 Apr 2018 19:56:34 +0000 Subject: [PATCH] Fix: The register mail contained variables in a wrong order --- src/Model/User.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Model/User.php b/src/Model/User.php index d971d968b0..4ae43c3e11 100644 --- a/src/Model/User.php +++ b/src/Model/User.php @@ -615,9 +615,9 @@ class User $body = deindent(L10n::t(' The login details are as follows: - Site Location: %1$s - Login Name: %2$s - Password: %3$s + Site Location: %3$s + Login Name: %1$s + Password: %5$s You may change your password from your account "Settings" page after logging in. @@ -636,9 +636,9 @@ class User If you are new and do not know anybody here, they may help you to make some new and interesting friends. - If you ever want to delete your account, you can do so at %1$s/removeme + If you ever want to delete your account, you can do so at %3$s/removeme - Thank you and welcome to %4$s.')); + Thank you and welcome to %2$s.')); $preamble = sprintf($preamble, $username, $sitename); $body = sprintf($body, $email, $sitename, $siteurl, $username, $password);