Rails3: scm: cvs: use .to_s for overriding human_attribute_name parameter
On Rails 3.0.11, parameter is symbol not string in activerecord validation. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8972 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
565ac00b70
commit
e5bcac1572
|
@ -22,7 +22,7 @@ class Repository::Cvs < Repository
|
|||
validates_presence_of :url, :root_url, :log_encoding
|
||||
|
||||
def self.human_attribute_name(attribute_key_name, *args)
|
||||
attr_name = attribute_key_name
|
||||
attr_name = attribute_key_name.to_s
|
||||
if attr_name == "root_url"
|
||||
attr_name = "cvsroot"
|
||||
elsif attr_name == "url"
|
||||
|
|
Loading…
Reference in New Issue