Swap old/new update_lastlogin()

This commit is contained in:
Miles Lott 2001-09-03 03:56:12 +00:00
parent 8911a39448
commit 8dd5db4d01

View File

@ -98,7 +98,7 @@
} }
/* This data needs to be updated in LDAP, not SQL (jengo) */ /* This data needs to be updated in LDAP, not SQL (jengo) */
function update_lastlogin($account_id, $ip) function old_update_lastlogin($account_id, $ip)
{ {
$GLOBALS['phpgw']->db->query("SELECT account_lastlogin FROM phpgw_accounts WHERE account_id='$account_id'",__LINE__,__FILE__); $GLOBALS['phpgw']->db->query("SELECT account_lastlogin FROM phpgw_accounts WHERE account_id='$account_id'",__LINE__,__FILE__);
$GLOBALS['phpgw']->db->next_record(); $GLOBALS['phpgw']->db->next_record();
@ -111,7 +111,7 @@
. "' WHERE account_id='$account_id'",__LINE__,__FILE__); . "' WHERE account_id='$account_id'",__LINE__,__FILE__);
} }
function new_update_lastlogin($_account_id, $ip) function update_lastlogin($_account_id, $ip)
{ {
$entry['phpgwaccountlastlogin'] = time(); $entry['phpgwaccountlastlogin'] = time();
$entry['phpgwaccountlastloginfrom'] = $ip; $entry['phpgwaccountlastloginfrom'] = $ip;