Merged r15749 (#23700).

git-svn-id: http://svn.redmine.org/redmine/branches/3.3-stable@15771 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2016-08-31 16:56:31 +00:00
parent 62f9b56c1e
commit 9f8053a82e
2 changed files with 12 additions and 1 deletions

View File

@@ -62,10 +62,12 @@ class WikiController < ApplicationController
def new
@page = WikiPage.new(:wiki => @wiki, :title => params[:title])
unless User.current.allowed_to?(:edit_wiki_pages, @project) && editable?
unless User.current.allowed_to?(:edit_wiki_pages, @project)
render_403
return
end
if request.post?
@page.title = '' unless editable?
@page.validate
if @page.errors[:title].blank?
path = project_wiki_page_path(@project, @page.title)

View File

@@ -223,6 +223,15 @@ class WikiControllerTest < ActionController::TestCase
assert_select_error 'Title has already been taken'
end
def test_post_new_with_protected_title_should_display_errors
Role.find(1).remove_permission!(:protect_wiki_pages)
@request.session[:user_id] = 2
post :new, :params => {:project_id => 'ecookbook', :title => 'Sidebar'}
assert_response :success
assert_select_error /Title/
end
def test_post_new_xhr_with_invalid_title_should_display_errors
@request.session[:user_id] = 2