diff options
author | Go MAEDA <maeda@farend.jp> | 2024-06-17 07:45:00 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-06-17 07:45:00 +0000 |
commit | 27c3c42e2dbe7f87538c5d444d89dec0b97c4876 (patch) | |
tree | 53fd9f92dd7abf68d9816bc27867f6cbd3324b20 | |
parent | 3b30f52df35fcf0b555b8097e0241da28c3753a3 (diff) | |
download | redmine-27c3c42e2dbe7f87538c5d444d89dec0b97c4876.tar.gz redmine-27c3c42e2dbe7f87538c5d444d89dec0b97c4876.zip |
Merged r22877 from trunk to 5.1-stable (#40655).
git-svn-id: https://svn.redmine.org/redmine/branches/5.1-stable@22883 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/wiki/show.html.erb | 2 | ||||
-rw-r--r-- | test/functional/wiki_controller_test.rb | 14 |
2 files changed, 15 insertions, 1 deletions
diff --git a/app/views/wiki/show.html.erb b/app/views/wiki/show.html.erb index 6a0245809..be0d7355a 100644 --- a/app/views/wiki/show.html.erb +++ b/app/views/wiki/show.html.erb @@ -85,7 +85,7 @@ <p class="wiki-update-info"> <% if User.current.allowed_to?(:view_wiki_edits, @project) %> <%= wiki_content_update_info(@content) %> - · <%= link_to l(:label_x_revisions, :count => @content.version), {:action => 'history', :id => @page.title} %> + · <%= link_to l(:label_x_revisions, :count => @page.content.versions.size), {:action => 'history', :id => @page.title} %> <% end %> <% if @page.protected? %> <span class="badge badge-status-locked"><%= l('status_locked') %></span> diff --git a/test/functional/wiki_controller_test.rb b/test/functional/wiki_controller_test.rb index 215c9caf4..1e1d98f32 100644 --- a/test/functional/wiki_controller_test.rb +++ b/test/functional/wiki_controller_test.rb @@ -233,6 +233,20 @@ class WikiControllerTest < Redmine::ControllerTest end end + def test_show_should_display_revisions_count + # To ensure that the number of versions is correctly displayed instead of + # the last version number of the wiki page, make a situation where the + # those two numbers are different. + content_versions = WikiContentVersion.where(page_id: 1) + content_versions.first.destroy + assert 3, content_versions.last.version + assert 2, content_versions.size + + get :show, :params => {:project_id => 1, :id => 'CookBook_documentation'} + assert_response :success + assert_select 'a[href=?]', '/projects/1/wiki/CookBook_documentation/history', :text => /2 revisions/ + end + def test_get_new @request.session[:user_id] = 2 |