summaryrefslogtreecommitdiffstats
path: root/app/helpers/users_helper.rb
diff options
context:
space:
mode:
authorMarius Balteanu <marius.balteanu@zitec.com>2024-08-31 08:11:18 +0000
committerMarius Balteanu <marius.balteanu@zitec.com>2024-08-31 08:11:18 +0000
commit1bf607edb9140f77fd2fc9b3eb371c7704929d23 (patch)
treea7b97226a3ee2fa94e869bcb3bc17756c13ef595 /app/helpers/users_helper.rb
parentcafb610b7f02d7e6946a327d5e2a467d11da2ff8 (diff)
downloadredmine-1bf607edb9140f77fd2fc9b3eb371c7704929d23.tar.gz
redmine-1bf607edb9140f77fd2fc9b3eb371c7704929d23.zip
Replaces icon-email and icon-passwd icons with SVG icons (#23980).
git-svn-id: https://svn.redmine.org/redmine/trunk@22999 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers/users_helper.rb')
-rw-r--r--app/helpers/users_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/users_helper.rb b/app/helpers/users_helper.rb
index 2fc2d809c..2091bb835 100644
--- a/app/helpers/users_helper.rb
+++ b/app/helpers/users_helper.rb
@@ -79,7 +79,7 @@ module UsersHelper
def additional_emails_link(user)
if user.email_addresses.count > 1 || Setting.max_additional_emails.to_i > 0
- link_to l(:label_email_address_plural), user_email_addresses_path(@user), :class => 'icon icon-email-add', :remote => true
+ link_to icon_with_label('email', l(:label_email_address_plural)), user_email_addresses_path(@user), :class => 'icon icon-email-add', :remote => true
end
end