Fixed that the Ruby/MySQL adapter wouldn't connect if the password was empty #503 [Pelle]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@454 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2005-01-18 09:54:12 +00:00
parent cd3f14cf38
commit 53088c4c7f
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
*SVN*
* Fixed that the Ruby/MySQL adapter wouldn't connect if the password was empty #503 [Pelle]
*1.5.0* (January 17th, 2005)
* Fixed that unit tests for MySQL are now run as the "rails" user instead of root #455 [Eric Hodel]

View File

@ -139,6 +139,7 @@ class Mysql
# candidate_hash2=sha1(hash_stage1)
# check(candidate_hash2==hash_stage2)
def scramble411( password, seed, old_ver )
return "" if password == nil or password == ""
raise "old version password is not implemented" if old_ver
# print "Seed Bytes = "
@ -302,4 +303,4 @@ class Mysql
end
self
end
end
end