summaryrefslogtreecommitdiffstats
path: root/app/models/auth_source_ldap.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2011-12-18 14:57:58 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2011-12-18 14:57:58 +0000
commit9e83ee2ddf3caf2b6b9887a1426bc610cd3364ad (patch)
treec1681d73a107d46ed968b39523e9a42054c93806 /app/models/auth_source_ldap.rb
parent062fbeae80477b8e5a95b2e5222f98b7e94c70b7 (diff)
downloadredmine-9e83ee2ddf3caf2b6b9887a1426bc610cd3364ad.tar.gz
redmine-9e83ee2ddf3caf2b6b9887a1426bc610cd3364ad.zip
Removed after_initialize methods.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8288 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models/auth_source_ldap.rb')
-rw-r--r--app/models/auth_source_ldap.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/models/auth_source_ldap.rb b/app/models/auth_source_ldap.rb
index b7ab0cf30..76b1c25f4 100644
--- a/app/models/auth_source_ldap.rb
+++ b/app/models/auth_source_ldap.rb
@@ -27,7 +27,8 @@ class AuthSourceLdap < AuthSource
before_validation :strip_ldap_attributes
- def after_initialize
+ def initialize(attributes=nil, *args)
+ super
self.port = 389 if self.port == 0
end