From 05eb43f5fc00889420e03845b5059d80bf1663ad Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Thu, 21 Apr 2011 14:45:37 +1200 Subject: [PATCH] Bug 6224 : Revert "3.0.x: ce353e7 bug #3674 allow users creation with disabled password" This reverts commit 87b792b2b61c8232c2facecf6feb2ce5f3fa2b9e. --- C4/Members.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Members.pm b/C4/Members.pm index f0ac280c3b..a151e036a5 100644 --- a/C4/Members.pm +++ b/C4/Members.pm @@ -800,7 +800,7 @@ Returns the borrowernumber sub AddMember { my (%data) = @_; my $dbh = C4::Context->dbh; - $data{'password'} = '!' if (not $data{'password'} and $data{'userid'}); + $data{'userid'} = '' unless $data{'password'}; $data{'password'} = md5_base64( $data{'password'} ) if $data{'password'}; $data{'borrowernumber'}=InsertInTable("borrowers",\%data); # mysql_insertid is probably bad. not necessarily accurate and mysql-specific at best. -- 2.39.2