mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:36 +01:00
SF #413717 - Fixed undefined function update_lastlogin(), this problem was for more then just mail_auth
This commit is contained in:
parent
a6081e5184
commit
50c4666ecc
@ -41,5 +41,17 @@
|
||||
global $phpgw_info, $phpgw;
|
||||
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__);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
@ -26,7 +26,8 @@
|
||||
|
||||
class auth
|
||||
{
|
||||
function authenticate($username, $passwd) {
|
||||
function authenticate($username, $passwd)
|
||||
{
|
||||
global $phpgw_info, $phpgw;
|
||||
// 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.....
|
||||
@ -81,6 +82,7 @@
|
||||
return $encrypted_passwd;
|
||||
}
|
||||
|
||||
// This data needs to be updated in LDAP, not SQL (jengo)
|
||||
function update_lastlogin($account_id, $ip)
|
||||
{
|
||||
global $phpgw;
|
||||
|
@ -67,5 +67,18 @@
|
||||
global $phpgw_info, $phpgw;
|
||||
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__);
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
||||
|
Loading…
Reference in New Issue
Block a user