mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-09 07:28:43 +01:00
GNU Support #100373 - Fix for datetime history not being saved to the table.
This commit is contained in:
parent
3d0eaa4b7e
commit
562a34a9c5
@ -55,10 +55,11 @@
|
||||
function add($status,$record_id,$new_value)
|
||||
{
|
||||
$this->db->query("insert into phpgw_history_log (history_record_id,"
|
||||
. "history_appname,history_owner,history_status,history_new_value) "
|
||||
. "history_appname,history_owner,history_status,history_new_value,history_timestamp) "
|
||||
. "values ('$record_id','" . $this->appname . "','"
|
||||
. $GLOBALS['phpgw_info']['user']['account_id'] . "','$status','"
|
||||
. addslashes($new_value) . "')",__LINE__,__FILE__);
|
||||
. addslashes($new_value) . "','" . $this->db->to_timestamp(time())
|
||||
. "')",__LINE__,__FILE__);
|
||||
}
|
||||
|
||||
// array $filter_out
|
||||
|
Loading…
Reference in New Issue
Block a user