mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
Now uses the dbs timestamp field
This commit is contained in:
parent
d6e74430bc
commit
f9726cefbe
@ -63,12 +63,12 @@
|
|||||||
while(list($rno,$r)=each($rows))
|
while(list($rno,$r)=each($rows))
|
||||||
{
|
{
|
||||||
unset($r['acount_pwd']); // remove the accounts_pwd
|
unset($r['acount_pwd']); // remove the accounts_pwd
|
||||||
$r['log_date_e'] = date('Y.n.d:H.i.s',$r['log_date']);
|
$r['log_date_e'] = $GLOBALS['phpgw']->common->show_date($GLOBALS['phpgw']->db->from_timestamp($r['log_date']));
|
||||||
$r['log_msg_date_e'] = date('Y.n.d:H.i.s',$r['log_msg_date']);
|
$r['log_msg_date_e'] = $GLOBALS['phpgw']->common->show_date($GLOBALS['phpgw']->db->from_timestamp($r['log_msg_date']));
|
||||||
$r['log_full_name'] = $r['account_lastname'] . ', ' .$r['account_firstname'];
|
$r['log_full_name'] = $r['account_lastname'] . ', ' .$r['account_firstname'];
|
||||||
$r['account_lastlogin_e'] = date('Y.n.d:H.i.s',$r['account_lastlogin']);
|
$r['account_lastlogin_e'] = $GLOBALS['phpgw']->common->show_date($GLOBALS['phpgw']->db->from_timestamp($r['account_lastlogin']));
|
||||||
$r['account_lastpwd_change_e'] = date('Y.n.d:H.i.s',$r['account_lastpwd_change']);
|
$r['account_lastpwd_change_e'] = $GLOBALS['phpgw']->common->show_date($GLOBALS['phpgw']->db->from_timestamp($r['account_lastpwd_change']));
|
||||||
$r['account_lastloginfrom_e'] = 'www.nowhere.com';
|
$r['account_lastloginfrom_e'] = 'www.nowhere.com';
|
||||||
|
|
||||||
$r['log_msg_text'] = lang($r['log_msg_msg'],explode('|',$r['log_msg_parms']));
|
$r['log_msg_text'] = lang($r['log_msg_msg'],explode('|',$r['log_msg_parms']));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user