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;
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
{
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.....
@ -37,7 +38,7 @@
// find the dn for this uid, the uid is not always in the dn
$sri = ldap_search($ldap, $phpgw_info['server']['ldap_context'], 'uid='.$username);
$allValues = ldap_get_entries($ldap, $sri);
if($allValues['count'] > 0)
if ($allValues['count'] > 0)
{
// we only care about the first dn
$userDN = $allValues[0]['dn'];
@ -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;
@ -92,5 +94,5 @@
. "$ip', account_lastlogin='" . $now
. "' where account_id='$account_id'",__LINE__,__FILE__);
}
}
}
?>

View File

@ -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__);
}
}
?>