1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-03 23:53:23 +00:00

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
This commit is contained in:
Jean-Philippe Lang 2014-10-05 13:18:55 +00:00
parent a567546335
commit 74cd72a2d9
2 changed files with 10 additions and 2 deletions

View File

@ -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

View File

@ -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 => '',