From 76d729573291eea6a7bcd1b04e1a509d5ab046b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?= Date: Tue, 10 Jan 2023 23:16:28 +0100 Subject: [PATCH] fix properties --- htdocs/core/class/html.formticket.class.php | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/htdocs/core/class/html.formticket.class.php b/htdocs/core/class/html.formticket.class.php index a34861e17d6..a397433979b 100644 --- a/htdocs/core/class/html.formticket.class.php +++ b/htdocs/core/class/html.formticket.class.php @@ -1,7 +1,7 @@ * Copyright (C) 2016 Christophe Battarel - * Copyright (C) 2019 Frédéric France + * Copyright (C) 2019-2022 Frédéric France * Copyright (C) 2021 Juanjo Menent * Copyright (C) 2021 Alexandre Spangaro * @@ -50,9 +50,15 @@ class FormTicket /** * @var string The track_id of the ticket. Used also for the $keytoavoidconflict to name session vars to upload files. + * @deprecated */ public $track_id; + /** + * @var string trackid + */ + public $trackid; + /** * @var int ID */ @@ -89,8 +95,12 @@ class FormTicket public $withusercreate; // to show name of creating user in form public $withcreatereadonly; - public $withref; // to show ref field + /** + * @var int withextrafields + */ + public $withextrafields; + public $withref; // to show ref field public $withcancel; public $type_code;