Browse Source

Log errors when bulk edit/copy fails (#13440).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11611 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/2.4.0
Jean-Philippe Lang 11 years ago
parent
commit
1d48ab201b
2 changed files with 2 additions and 0 deletions
  1. 1
    0
      app/controllers/issues_controller.rb
  2. 1
    0
      app/controllers/timelog_controller.rb

+ 1
- 0
app/controllers/issues_controller.rb View File

@@ -272,6 +272,7 @@ class IssuesController < ApplicationController
if issue.save
moved_issues << issue
else
logger.info "issue could not be updated or copied: #{issue.errors.full_messages}" if logger && logger.info
# Keep unsaved issue ids to display them in flash error
unsaved_issue_ids << issue.id
end

+ 1
- 0
app/controllers/timelog_controller.rb View File

@@ -198,6 +198,7 @@ class TimelogController < ApplicationController
time_entry.safe_attributes = attributes
call_hook(:controller_time_entries_bulk_edit_before_save, { :params => params, :time_entry => time_entry })
unless time_entry.save
logger.info "time entry could not be updated: #{time_entry.errors.full_messages}" if logger && logger.info
# Keep unsaved time_entry ids to display them in flash error
unsaved_time_entry_ids << time_entry.id
end

Loading…
Cancel
Save