From f1cce1dec114a452233ad4af5f4b1ab082305447 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20H=C3=B6hn?= Date: Sun, 30 Jul 2017 22:11:34 +0200 Subject: [PATCH] Update add_user change password crash creation from password_hash to md5 --- add_user | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/add_user b/add_user index 35ade31..d0a89e0 100644 --- a/add_user +++ b/add_user @@ -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);