Fix the function call some more

This commit is contained in:
Miles Lott 2004-01-21 23:13:02 +00:00
parent 56085e8acf
commit 934067f137

View File

@ -246,7 +246,7 @@
$pwd_check = '';
if(!$admin)
{
$pwd_check = " AND account_pwd='" . $GLOBALS['phpgw']->common->encrypt_sql($old_passwd) . "'";
$pwd_check = " AND account_pwd='" . $this->encrypt_sql($old_passwd) . "'";
}
$this->db->query("UPDATE phpgw_accounts SET account_pwd='" . $encrypted_passwd . "',"
. "account_lastpwd_change='" . time() . "' WHERE account_id='" . $account_id . "'" . $pwd_check,__LINE__,__FILE__);