X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/f08259a5293dc7756fe73cef6a46d5664386b678..7f661ec55e3cf054a1f6ef99df090617e7d71b89:/app/views/layouts/_inbox.html.erb diff --git a/app/views/layouts/_inbox.html.erb b/app/views/layouts/_inbox.html.erb index 2af76f9ed..fcaa5ae64 100644 --- a/app/views/layouts/_inbox.html.erb +++ b/app/views/layouts/_inbox.html.erb @@ -1,7 +1,13 @@ -<%= link_to raw(t('layouts.inbox', - :count => @user.new_messages.size > 0 ? "#{@user.new_messages.size}" : '')), - { - :action => 'inbox', - :display_name => @user.display_name, - :controller => 'message' - }, { :id => 'inboxanchor' } %> +<%= + link_to( + t("layouts.inbox_html", + :count => @user.new_messages.size > 0 ? + content_tag( + :span, @user.new_messages.size, :class => "count-number" + ) : + "" + ), + inbox_path(:display_name => @user.display_name), + :id => "inboxanchor" + ) +%>