From: Toshi MARUYAMA Date: Sat, 23 Apr 2011 00:25:32 +0000 (+0000) Subject: scm: cvs: fix mistake human attribute names of root_url and url. X-Git-Tag: 1.2.0~339 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2dc0875a72e9a7846799d4d1b1335c01fd0ba633;p=redmine.git scm: cvs: fix mistake human attribute names of root_url and url. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5516 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/models/repository/cvs.rb b/app/models/repository/cvs.rb index d95b5f12d..4c8d8034f 100644 --- a/app/models/repository/cvs.rb +++ b/app/models/repository/cvs.rb @@ -22,8 +22,8 @@ class Repository::Cvs < Repository validates_presence_of :url, :root_url, :log_encoding ATTRIBUTE_KEY_NAMES = { - "url" => "CVSROOT", - "root_url" => "Module", + "root_url" => "CVSROOT", + "url" => "Module", "log_encoding" => "Commit messages encoding", } def self.human_attribute_name(attribute_key_name)