diff --git a/settings/templates/email.new_user.php b/settings/templates/email.new_user.php index 054992532d2a25608e8cadfae98871dbdd8311e2..bd2d4249d9a7f5b10734a5b070dfde39f68d1072 100644 --- a/settings/templates/email.new_user.php +++ b/settings/templates/email.new_user.php @@ -11,7 +11,7 @@ <td width="20px"> </td> <td style="font-weight:normal; font-size:0.8em; line-height:1.2em; font-family:verdana,'arial',sans;"> <?php - print_unescaped($l->t('Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href="%s">%s</a><br><br>', array($theme->getName(), $_['username'], $_['url'], $_['url']))); + print_unescaped($l->t('Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href="%s">%s</a></strong><br><br>', array($theme->getName(), $_['username'], $_['url'], $_['url']))); // TRANSLATORS term at the end of a mail p($l->t('Cheers!')); diff --git a/settings/templates/email.new_user_plain_text.php b/settings/templates/email.new_user_plain_text.php index 79559a87020e09b43f8e9e742c99c8d5fc455a10..2cc70ddfa2fca8156d870ac04c4d7c8787afb337 100644 --- a/settings/templates/email.new_user_plain_text.php +++ b/settings/templates/email.new_user_plain_text.php @@ -1,5 +1,5 @@ <?php -print_unescaped($l->t("Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n", array($theme->getName(), $_['username'], $_['url']))); +print_unescaped($l->t("Hey there,\n\njust letting you know that you now have a %s account.\n\nYour username: %s\nAccess it: %s\n\n", array($theme->getName(), $_['username'], $_['url']))); // TRANSLATORS term at the end of a mail p($l->t("Cheers!"));