From 53088c4c7f49c0574d0cb6466b4dc9c0b161a4d9 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 18 Jan 2005 09:54:12 +0000 Subject: 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 --- activerecord/lib/active_record/vendor/mysql411.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'activerecord/lib') diff --git a/activerecord/lib/active_record/vendor/mysql411.rb b/activerecord/lib/active_record/vendor/mysql411.rb index 32d4084674..3daa846f16 100644 --- a/activerecord/lib/active_record/vendor/mysql411.rb +++ b/activerecord/lib/active_record/vendor/mysql411.rb @@ -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 \ No newline at end of file +end -- cgit v1.2.3