Fix migrating from Redmine 1.4 #1067

Contributed by Steffen Schüssler
This commit is contained in:
Felix Schäfer 2012-07-09 20:41:17 +02:00
parent e3dc444b9c
commit d41c7f1e8c
1 changed files with 3 additions and 3 deletions

View File

@ -89,12 +89,12 @@ class Changeset < ActiveRecord::Base
# Attribute reader for committer that encodes the committer string to
# the repository log encoding (e.g. UTF-8)
def committer
self.class.to_utf8(read_attribute(:committer), repository.repo_log_encoding)
self.class.to_utf8(read_attribute(:committer), repository_encoding)
end
def before_create
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.committer = self.class.to_utf8(self.committer, repository_encoding)
self.comments = self.class.normalize_comments(self.comments, repository_encoding)
self.user = repository.find_committer_user(self.committer)
end