Update change_password

change password hashing from password_hash to md5
master
Patrick Höhn 2017-07-30 22:13:40 +02:00 committed by GitHub
parent f1cce1dec1
commit 1c042627bb
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ echo $docRoot;
echo "changing password for user $username\n";
$passwordhash = password_hash($password, PASSWORD_DEFAULT);
$passwordhash = md5($password, PASSWORD_DEFAULT);
Zotero_DB::beginTransaction();