From 2ebffb2ffe2fc03c47f9379d4b7c99154d34cacd Mon Sep 17 00:00:00 2001 From: ptibogxiv Date: Tue, 5 Mar 2019 16:29:53 +0100 Subject: [PATCH] FIX: date in ticket.class.php dolibarize date --- htdocs/ticket/class/ticket.class.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/htdocs/ticket/class/ticket.class.php b/htdocs/ticket/class/ticket.class.php index 0eb1de8f8d2..c603c0489cb 100644 --- a/htdocs/ticket/class/ticket.class.php +++ b/htdocs/ticket/class/ticket.class.php @@ -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();