summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/models/issue.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/issue.rb b/app/models/issue.rb
index c36fa788e..50b0dcecd 100644
--- a/app/models/issue.rb
+++ b/app/models/issue.rb
@@ -355,7 +355,7 @@ class Issue < ActiveRecord::Base
if !assignable_versions.include?(fixed_version)
errors.add :fixed_version_id, :inclusion
elsif reopened? && fixed_version.closed?
- errors.add_to_base I18n.t(:error_can_not_reopen_issue_on_closed_version)
+ errors.add :base, I18n.t(:error_can_not_reopen_issue_on_closed_version)
end
end