diff --git a/app/views/repositories/revision.html.erb b/app/views/repositories/revision.html.erb
index c0e9ac130..91c7d3b93 100644
--- a/app/views/repositories/revision.html.erb
+++ b/app/views/repositories/revision.html.erb
@@ -29,41 +29,41 @@
<%= avatar(@changeset.user, :size => "24") %><%= l(:label_revision) %> <%= format_revision(@changeset) %>
-<% if @changeset.scmid.present? || @changeset.parents.present? || @changeset.children.present? %>
-
- <% if @changeset.scmid.present? %>
-
- | ID | <%= @changeset.scmid %> |
-
+ <% if @changeset.scmid.present? || @changeset.parents.present? || @changeset.children.present? %>
+
+ <% if @changeset.scmid.present? %>
+
+ | ID | <%= @changeset.scmid %> |
+
+ <% end %>
+ <% if @changeset.parents.present? %>
+
+ | <%= l(:label_parent_revision) %> |
+
+ <%= @changeset.parents.collect{
+ |p| link_to_revision(p, @repository, :text => format_revision(p))
+ }.join(", ").html_safe %>
+ |
+
+ <% end %>
+ <% if @changeset.children.present? %>
+
+ | <%= l(:label_child_revision) %> |
+
+ <%= @changeset.children.collect{
+ |p| link_to_revision(p, @repository, :text => format_revision(p))
+ }.join(", ").html_safe %>
+ |
+
+ <% end %>
+
<% end %>
- <% if @changeset.parents.present? %>
-
- | <%= l(:label_parent_revision) %> |
-
- <%= @changeset.parents.collect{
- |p| link_to_revision(p, @repository, :text => format_revision(p))
- }.join(", ").html_safe %>
- |
-
- <% end %>
- <% if @changeset.children.present? %>
-
- | <%= l(:label_child_revision) %> |
-
- <%= @changeset.children.collect{
- |p| link_to_revision(p, @repository, :text => format_revision(p))
- }.join(", ").html_safe %>
- |
-
- <% end %>
-
-<% end %>
-
-
-<%= authoring(@changeset.committed_on, @changeset.author) %>
-
-
+
+
+ <%= authoring(@changeset.committed_on, @changeset.author) %>
+
+
<%= textilizable @changeset.comments %>