SF #413717 - Fixed undefined function update_lastlogin(), this problem was for more then just mail_auth

This commit is contained in:
jengo 2001-04-10 07:58:19 +00:00
parent a6081e5184
commit 50c4666ecc
3 changed files with 85 additions and 58 deletions

View File

@ -41,5 +41,17 @@
global $phpgw_info, $phpgw; global $phpgw_info, $phpgw;
return False; return False;
} }
// Since there account data will still be stored in SQL, this should be safe to do. (jengo)
function update_lastlogin($account_id, $ip)
{
global $phpgw;
$account_id = get_account_id($account_id);
$phpgw->db->query("update phpgw_accounts set account_lastloginfrom='"
. "$ip', account_lastlogin='" . time()
. "' where account_id='$account_id'",__LINE__,__FILE__);
}
} }
?> ?>

View File

@ -26,7 +26,8 @@
class auth class auth
{ {
function authenticate($username, $passwd) { function authenticate($username, $passwd)
{
global $phpgw_info, $phpgw; global $phpgw_info, $phpgw;
// error_reporting MUST be set to zero, otherwise you'll get nasty LDAP errors with a bad login/pass... // error_reporting MUST be set to zero, otherwise you'll get nasty LDAP errors with a bad login/pass...
// these are just "warnings" and can be ignored..... // these are just "warnings" and can be ignored.....
@ -81,6 +82,7 @@
return $encrypted_passwd; return $encrypted_passwd;
} }
// This data needs to be updated in LDAP, not SQL (jengo)
function update_lastlogin($account_id, $ip) function update_lastlogin($account_id, $ip)
{ {
global $phpgw; global $phpgw;

View File

@ -67,5 +67,18 @@
global $phpgw_info, $phpgw; global $phpgw_info, $phpgw;
return False; return False;
} }
// Since there account data will still be stored in SQL, this should be safe to do. (jengo)
function update_lastlogin($account_id, $ip)
{
global $phpgw;
$account_id = get_account_id($account_id);
$phpgw->db->query("update phpgw_accounts set account_lastloginfrom='"
. "$ip', account_lastlogin='" . time()
. "' where account_id='$account_id'",__LINE__,__FILE__);
}
} }
?> ?>