##// END OF EJS Templates
Update project_id column in case some time entries were on subtasks of different projects (#24693)....
Jean-Philippe Lang -
r15738:1b3042235493
parent child
Show More
@@ -364,7 +364,7 class IssuesController < ApplicationController
364 364 flash.now[:error] = l(:error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted)
365 365 return
366 366 else
367 time_entries.update_all(:issue_id => reassign_to.id)
367 time_entries.update_all(:issue_id => reassign_to.id, :project_id => reassign_to.project_id)
368 368 end
369 369 else
370 370 # display the destroy form if it's a user request
General Comments 0
You need to be logged in to leave comments. Login now