From: Jean-Philippe Lang Date: Sun, 5 Oct 2014 13:18:55 +0000 (+0000) Subject: Fixed that preview doesn't show notes when issue project is changed (#17959). X-Git-Tag: 2.6.0~14 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=74cd72a2d96941c3ab283f547fb35f6b02333f92;p=redmine.git Fixed that preview doesn't show notes when issue project is changed (#17959). git-svn-id: http://svn.redmine.org/redmine/trunk@13428 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/controllers/previews_controller.rb b/app/controllers/previews_controller.rb index 38245b94b..e74d1fe55 100644 --- a/app/controllers/previews_controller.rb +++ b/app/controllers/previews_controller.rb @@ -19,7 +19,7 @@ class PreviewsController < ApplicationController before_filter :find_project, :find_attachments def issue - @issue = @project.issues.find_by_id(params[:id]) unless params[:id].blank? + @issue = Issue.visible.find_by_id(params[:id]) unless params[:id].blank? if @issue @description = params[:issue] && params[:issue][:description] if @description && @description.gsub(/(\r?\n|\n\r?)/, "\n") == @issue.description.to_s.gsub(/(\r?\n|\n\r?)/, "\n") @@ -45,7 +45,7 @@ class PreviewsController < ApplicationController def find_project project_id = (params[:issue] && params[:issue][:project_id]) || params[:project_id] - @project = Project.find(project_id) + @project = Project.visible.find(project_id) rescue ActiveRecord::RecordNotFound render_404 end diff --git a/test/functional/previews_controller_test.rb b/test/functional/previews_controller_test.rb index 976af94e3..abbbd7afa 100644 --- a/test/functional/previews_controller_test.rb +++ b/test/functional/previews_controller_test.rb @@ -62,6 +62,14 @@ class PreviewsControllerTest < ActionController::TestCase assert_select 'a.attachment', :text => 'foo.bar' end + def test_preview_issue_with_project_changed + @request.session[:user_id] = 2 + post :issue, :project_id => '1', :id => 1, :issue => {:notes => 'notes', :project_id => 2} + assert_response :success + assert_not_nil assigns(:issue) + assert_not_nil assigns(:notes) + end + def test_preview_new_news get :news, :project_id => 1, :news => {:title => '',