mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-02-08 00:52:01 +01:00
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
This commit is contained in:
committed by
GitHub
parent
22e2087b9e
commit
fc667082ee
@@ -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"));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user