Update add_user

change password crash creation from password_hash to md5
This commit is contained in:
Patrick Höhn
2017-07-30 22:11:34 +02:00
committed by GitHub
parent 5e0ec55f92
commit f1cce1dec1

View File

@@ -14,7 +14,7 @@ $real_user = $argv[4];
echo "Adding new user $username\n";
$passwordhash = password_hash($password);
$passwordhash = md5($password);
#$libraryID = Zotero_Libraries::add('user', 1);