summaryrefslogtreecommitdiff
path: root/app/helpers/users_helper.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-08-22 00:10:40 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2022-08-22 00:10:40 +0000
commit575f0455291a8c7ef58ead54c8c8a1791e4a6832 (patch)
tree3779e78a176d4fa586c3cfe88aa8f6b5da4d81e4 /app/helpers/users_helper.rb
parent5eba5218725562610914a1a510d05507abc0ed56 (diff)
downloadgitlab-ce-575f0455291a8c7ef58ead54c8c8a1791e4a6832.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/helpers/users_helper.rb')
-rw-r--r--app/helpers/users_helper.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/app/helpers/users_helper.rb b/app/helpers/users_helper.rb
index 679102fcd83..fb0f739934e 100644
--- a/app/helpers/users_helper.rb
+++ b/app/helpers/users_helper.rb
@@ -18,10 +18,11 @@ module UsersHelper
return _('We also use email for avatar detection if no avatar is uploaded.') unless user.unconfirmed_email.present?
confirmation_link = link_to _('Resend confirmation e-mail'), user_confirmation_path(user: { email: user.unconfirmed_email }), method: :post
-
- h(_('Please click the link in the confirmation email before continuing. It was sent to ')) +
- content_tag(:strong) { user.unconfirmed_email } + h('.') +
- content_tag(:p) { confirmation_link }
+ h(_('Please click the link in the confirmation email before continuing. It was sent to %{html_tag_strong_start}%{email}%{html_tag_strong_end}.')) % {
+ html_tag_strong_start: '<strong>'.html_safe,
+ html_tag_strong_end: '</strong>'.html_safe,
+ email: user.unconfirmed_email
+ } + content_tag(:p) { confirmation_link }
end
def profile_tabs