From fc667082ee953fd18c720bc2555ed326d5ceee03 Mon Sep 17 00:00:00 2001 From: Lucas Marcouiller <45882981+Hystepik@users.noreply.github.com> Date: Wed, 4 Jun 2025 15:22:22 +0200 Subject: [PATCH] Fix bad use of getDolGlobalInt to get a string in ticket.class.php (#34353) * Fix bad use of getDolGlobalInt to get a string in ticket.class.php * fix --- htdocs/ticket/class/ticket.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/ticket/class/ticket.class.php b/htdocs/ticket/class/ticket.class.php index b8ff7f72d96..9281ee33fec 100644 --- a/htdocs/ticket/class/ticket.class.php +++ b/htdocs/ticket/class/ticket.class.php @@ -2994,7 +2994,7 @@ class Ticket extends CommonObject } $sendtocc = array(); - if (getDolGlobalInt("TICKET_SEND_INTERNAL_CC")) { + if (getDolGlobalString("TICKET_SEND_INTERNAL_CC")) { $sendtocc = explode(',', getDolGlobalString("TICKET_SEND_INTERNAL_CC")); }