fixed bug: update owner_user when validating an event
This commit is contained in:
parent
a4bd4a4c5d
commit
d6ac646046
|
@ -612,12 +612,14 @@ function events_update_status($id_evento, $status, $filter=null, $history=false)
|
|||
'UPDATE %s
|
||||
SET estado = %d,
|
||||
ack_utimestamp = %d,
|
||||
id_usuario = "%s"
|
||||
id_usuario = "%s",
|
||||
owner_user = "%s"
|
||||
WHERE id_evento IN (%s)',
|
||||
$table,
|
||||
$status,
|
||||
time(),
|
||||
$config['id_user'],
|
||||
$config['id_user'],
|
||||
join(',', $target_ids)
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue