From 5a21d62e39e2456290af350e18eeff5d1aee747b Mon Sep 17 00:00:00 2001 From: Francis Appels Date: Fri, 15 Nov 2024 18:07:18 +0100 Subject: [PATCH] FIX Status not correct in Public ticket list --- htdocs/public/ticket/list.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/htdocs/public/ticket/list.php b/htdocs/public/ticket/list.php index fcc9a00e72a70..4a7bbf39a6f84 100644 --- a/htdocs/public/ticket/list.php +++ b/htdocs/public/ticket/list.php @@ -702,7 +702,10 @@ // Statut if (!empty($arrayfields['t.fk_statut']['checked'])) { print ''; - $object->fk_statut = $obj->fk_statut; + $object->status = $obj->fk_statut; + if (getDolGlobalString('TICKET_SHOW_PROGRESSION')) { + $object->progress = $obj->progress; + } print $object->getLibStatut(2); print ''; }