From 5663ca89facc10db2b9c665ecda6101ece14ce3e Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sat, 24 Mar 2012 14:07:42 +0000 Subject: Fixes error message for LDAP filter (#1060). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9258 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/models/auth_source_ldap.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'app') diff --git a/app/models/auth_source_ldap.rb b/app/models/auth_source_ldap.rb index 91942b282..92bcd4d65 100644 --- a/app/models/auth_source_ldap.rb +++ b/app/models/auth_source_ldap.rb @@ -29,6 +29,14 @@ class AuthSourceLdap < AuthSource before_validation :strip_ldap_attributes + def self.human_attribute_name(attribute_key_name, *args) + attr_name = attribute_key_name.to_s + if attr_name == "filter" + attr_name = "ldap_filter" + end + super(attr_name, *args) + end + def initialize(attributes=nil, *args) super self.port = 389 if self.port == 0 -- cgit v1.2.3