diff --git a/app/views/topics/show.html.erb b/app/views/topics/show.html.erb index 182f48818..e4eaf680d 100644 --- a/app/views/topics/show.html.erb +++ b/app/views/topics/show.html.erb @@ -9,7 +9,11 @@ #<%=post.post_number%> <%= t 'by'%>: <%= post.user.name %>, <%= post.created_at.to_formatted_s(:long_ordinal) %>
<%= t('author_wrote', author: link_to(post.user.name, userpage_url(post.user.username_lower))).html_safe %>
- <%= post.cooked.html_safe %> + <% if post.hidden %> + <%= t('flagging.user_must_edit').html_safe %> + <% else %> + <%= post.cooked.html_safe %> + <% end %>
<%= link_to t('read_full_topic'), post_url %>
]]>