From 659600ea4e64e4ab10fb0de2115dac182bde7abf Mon Sep 17 00:00:00 2001 From: ldestailleur Date: Wed, 4 Jun 2025 15:10:31 +0200 Subject: [PATCH] Fix CI --- htdocs/ticket/class/ticket.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/ticket/class/ticket.class.php b/htdocs/ticket/class/ticket.class.php index 73938c823a6..b8ff7f72d96 100644 --- a/htdocs/ticket/class/ticket.class.php +++ b/htdocs/ticket/class/ticket.class.php @@ -2886,7 +2886,7 @@ class Ticket extends CommonObject $sendtocc = array(); if (getDolGlobalInt("TICKET_SEND_INTERNAL_CC")) { - $sendtocc = explode(',', getDolGlobalInt("TICKET_SEND_INTERNAL_CC")); + $sendtocc = explode(',', getDolGlobalString("TICKET_SEND_INTERNAL_CC")); } // don't try to send email if no recipient @@ -2995,7 +2995,7 @@ class Ticket extends CommonObject $sendtocc = array(); if (getDolGlobalInt("TICKET_SEND_INTERNAL_CC")) { - $sendtocc = explode(',', getDolGlobalInt("TICKET_SEND_INTERNAL_CC")); + $sendtocc = explode(',', getDolGlobalString("TICKET_SEND_INTERNAL_CC")); } // Don't try to send email when no recipient