Actions
Defect #40655
closedRevisions count is wrong on the wiki content page
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Affected version:
Description
It shows the number of the last revision instead of count of revisions
Files
Updated by Go MAEDA 5 months ago
- File 40655.patch 40655.patch added
Thank you for reporting the issue. I am attaching an updated patch with a test code.
The original patch raises an exception when rendering a specific version of a Wiki page. The attached patch includes the fix for it.
ActionView::Template::Error (undefined method `versions' for an instance of WikiContentVersion): 85: <p class="wiki-update-info"> 86: <% if User.current.allowed_to?(:view_wiki_edits, @project) %> 87: <%= wiki_content_update_info(@content) %> 88: · <%= link_to l(:label_x_revisions, :count => @content.versions.all.size), {:action => 'history', :id => @page.title} %> 89: <% end %> 90: <% if @page.protected? %> 91: <span class="badge badge-status-locked"><%= l('status_locked') %></span> app/views/wiki/show.html.erb:88
Actions