Skip to content

Commit

Permalink
improve debuggability of code
Browse files Browse the repository at this point in the history
  • Loading branch information
SamSaffron committed Sep 22, 2014
1 parent 9428ad7 commit 7de3312
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/views/topics/show.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
<% @topic_view.posts.each do |post| %>
<% if post.user %>
<div class='creator'>
<b><%= post.user.username_lower %></b> <%= "(#{post.user.name})" if SiteSetting.display_name_on_posts %><%= post.created_at.to_formatted_s(:iso8601) %> — #<%= post.post_number %>
<b><%= post.user.username_lower %></b>
<%= "(#{post.user.name})" if SiteSetting.display_name_on_posts %>
<%= post.created_at.to_formatted_s(:iso8601) %>
#<%= post.post_number %>
</div>
<div class='post'>
<% if post.hidden %>
Expand Down

0 comments on commit 7de3312

Please sign in to comment.