@@ -, +, @@ text password over email --- installer/data/mysql/en/mandatory/sample_notices.yml | 3 ++- members/memberentry.pl | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) --- a/installer/data/mysql/en/mandatory/sample_notices.yml +++ a/installer/data/mysql/en/mandatory/sample_notices.yml @@ -917,10 +917,11 @@ tables: - "Your new Koha account details are:" - "" - "User: <>" - - "Password: <>" - "" - "If you have any problems or questions regarding your account, please contact your Koha Administrator." - "" + - "If you do not have your account password, please contact your Koha Administrator." + - "" - "Thank you," - "Koha Administrator" - "kohaadmin@yoursite.org" --- a/members/memberentry.pl +++ a/members/memberentry.pl @@ -462,6 +462,7 @@ if ((!$nok) and $nodouble and ($op eq 'insert' or $op eq 'save')){ add_guarantors( $patron, $input ); $borrowernumber = $patron->borrowernumber; $newdata{'borrowernumber'} = $borrowernumber; + delete $newdata{password}; } # If 'AutoEmailOpacUser' syspref is on, email user their account details from the 'notice' that matches the user's branchcode. --