1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 15:01:14 +00:00

revert r13896 (#14534)

git-svn-id: http://svn.redmine.org/redmine/trunk@14136 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2015-03-20 07:26:34 +00:00
parent c8fb677a1f
commit 86c6afb545

View File

@ -69,16 +69,6 @@ class Changeset < ActiveRecord::Base
end
end
def committer=(arg)
write_attribute :committer,
self.class.to_utf8(arg, repository.try(:repo_log_encoding))
end
def comments=(arg)
write_attribute :comments,
self.class.normalize_comments(arg, repository.try(:repo_log_encoding))
end
def committed_on=(date)
self.commit_date = date
super
@ -102,7 +92,9 @@ class Changeset < ActiveRecord::Base
end
def before_create_cs
self.comments ||= ''
self.committer = self.class.to_utf8(self.committer, repository.repo_log_encoding)
self.comments = self.class.normalize_comments(
self.comments, repository.repo_log_encoding)
self.user = repository.find_committer_user(self.committer)
end