mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-02-12 19:02:35 +01:00
Fix CI
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user