diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-12-18 14:57:58 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-12-18 14:57:58 +0000 |
commit | 9e83ee2ddf3caf2b6b9887a1426bc610cd3364ad (patch) | |
tree | c1681d73a107d46ed968b39523e9a42054c93806 /app/models/auth_source_ldap.rb | |
parent | 062fbeae80477b8e5a95b2e5222f98b7e94c70b7 (diff) | |
download | redmine-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.rb | 3 |
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 |