fixed unencrypted password on creation of new users

This commit is contained in:
Ralf Becker 2004-07-08 17:25:53 +00:00
parent dbc3954526
commit 36eea9746e

View File

@ -304,7 +304,7 @@
{
$account_data = array(
'account_lid' => $account_info['account_lid'],
'account_pwd' => $account_info['account_passwd'],
'account_pwd' => $GLOBALS['phpgw']->common->encrypt_password($account_info['account_passwd'],True),
'account_firstname' => $account_info['account_firstname'],
'account_lastname' => $account_info['account_lastname'],
'account_status' => $account_info['status'],