diff --git a/app/views/user_notifications/digest.html.erb b/app/views/user_notifications/digest.html.erb index 9bb24e9df13..c64f48b6ca2 100644 --- a/app/views/user_notifications/digest.html.erb +++ b/app/views/user_notifications/digest.html.erb @@ -130,7 +130,7 @@ body, table, td, th, h1, h2, h3 {font-family: Helvetica, Arial, sans-serif !impo
<%= t.user.name -%>
<% end %>
-
+ |
@@ -261,8 +261,10 @@ body, table, td, th, h1, h2, h3 {font-family: Helvetica, Arial, sans-serif !impo
- <%= post.user.username -%>-<%= post.user.name -%> +<%= post.user.try(:username) -%>+ <% if SiteSetting.enable_names? && post.user.try(:name) %> +<%= post.user.name -%> + <% end %> |
@@ -279,23 +281,33 @@ body, table, td, th, h1, h2, h3 {font-family: Helvetica, Arial, sans-serif !impo |
+ + |
+ |
+
|
+ + |