Merge pull request #10746 from ptibogxiv/patch-139

FIX: date in ticket.class.php
This commit is contained in:
Laurent Destailleur 2019-03-05 18:41:32 +01:00 committed by GitHub
commit db3f362d10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -528,9 +528,12 @@ class Ticket extends CommonObject
$this->severity_label = $label_severity;
$this->datec = $this->db->jdate($obj->datec);
$this->date_creation = $this->db->jdate($obj->datec);
$this->date_read = $this->db->jdate($obj->date_read);
$this->date_validation = $this->db->jdate($obj->date_read);
$this->date_close = $this->db->jdate($obj->date_close);
$this->tms = $this->db->jdate($obj->tms);
$this->date_modification = $this->db->jdate($obj->tms);
$this->fetch_optionals();