diff --git a/wiki/app/views/wiki/history.rhtml b/wiki/app/views/wiki/history.rhtml index 580a6eeb3..e44a08168 100644 --- a/wiki/app/views/wiki/history.rhtml +++ b/wiki/app/views/wiki/history.rhtml @@ -6,8 +6,23 @@
<% @versions.each do |ver| %>
-<%= link_to "#{ver.version}. #{format_time(ver.updated_on)}", :action => 'index', :page => @page.title, :version => ver.version %> (<%= ver.author ? ver.author.name : "anonyme" %>) <%= ver.comment %>
-<% end %>
| # | +<%= l(:field_updated_on) %> | +<%= l(:field_author) %> | +<%= l(:field_comment) %> | +
|---|---|---|---|
| <%= link_to ver.version, :action => 'index', :page => @page.title, :version => ver.version %> | +<%= format_time(ver.updated_on) %> | +<%= ver.author ? ver.author.name : "anonyme" %> | +<%=h ver.comment %> | +
<%= link_to l(:button_back), :action => 'index', :page => @page.title %>
\ No newline at end of file