Index: app/views/issues/_changesets.html.erb =================================================================== --- app/views/issues/_changesets.html.erb (revision 16072) +++ app/views/issues/_changesets.html.erb (working copy) @@ -13,7 +13,7 @@ <% end %>
<%= authoring(changeset.committed_on, changeset.author) %>

-
+
<%= format_changeset_comments changeset %>
Index: app/views/repositories/_changeset.html.erb =================================================================== --- app/views/repositories/_changeset.html.erb (revision 16072) +++ app/views/repositories/_changeset.html.erb (working copy) @@ -33,7 +33,7 @@ -
+
<%= format_changeset_comments @changeset %>
Index: public/stylesheets/application.css =================================================================== --- public/stylesheets/application.css (revision 16072) +++ public/stylesheets/application.css (working copy) @@ -492,7 +492,7 @@ div#issue-changesets div.changeset { padding: 4px;} div#issue-changesets div.changeset { border-bottom: 1px solid #ddd; } div#issue-changesets p { margin-top: 0; margin-bottom: 1em;} -.changset-comments {margin-bottom:1em; font-family:} +.changeset-comments {margin-bottom:1em; font-family:} div.journal {overflow:auto;} div.journal.private-notes {border-left:2px solid #d22; padding-left:4px; margin-left:-6px;} Index: test/functional/repositories_controller_test.rb =================================================================== --- test/functional/repositories_controller_test.rb (revision 16072) +++ test/functional/repositories_controller_test.rb (working copy) @@ -173,7 +173,7 @@ with_settings :commit_logs_formatting => '0' do get :revision, :id => 1, :rev => 1 assert_response :success - assert_select '.changset-comments', :text => 'Simple *text*' + assert_select '.changeset-comments', :text => 'Simple *text*' end end