mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-12-25 14:10:28 +01:00
Bugfix ticket system display and handling of recipients
This commit is contained in:
parent
731f67a9b9
commit
93da199f12
@ -554,7 +554,7 @@ class TicketImportHelper
|
|||||||
|
|
||||||
|
|
||||||
// Add all the recipients to the header table
|
// Add all the recipients to the header table
|
||||||
if (count($message->getRecipients()) > 1) {
|
if (count($message->getRecipients()) > 0) {
|
||||||
|
|
||||||
foreach ($message->getRecipients() as $recipient) {
|
foreach ($message->getRecipients() as $recipient) {
|
||||||
$recipient_address = $this->db->real_escape_string($recipient->getEmail());
|
$recipient_address = $this->db->real_escape_string($recipient->getEmail());
|
||||||
|
@ -562,7 +562,13 @@ class Ticket {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$sql = "SELECT GROUP_CONCAT(DISTINCT `value` ORDER BY `value` SEPARATOR ', ') FROM ticket_header th WHERE th.ticket_nachricht = ".$recv_messages[0]['id']." AND `value` <> '".$senderAddress."' AND type='to'";
|
$sql = "SELECT GROUP_CONCAT(DISTINCT `value` ORDER BY `value` SEPARATOR ', ') FROM ticket_header th WHERE th.ticket_nachricht = ".$recv_messages[0]['id']." AND `value` <> '".$senderAddress."' AND type='to'";
|
||||||
$to .= ", ".$this->app->DB->Select($sql);
|
|
||||||
|
$to_additional = $this->app->DB->Select($sql);
|
||||||
|
|
||||||
|
if (!empty($to_additional)) {
|
||||||
|
$to .= ", ".$to_additional;
|
||||||
|
}
|
||||||
|
|
||||||
$sql = "SELECT GROUP_CONCAT(DISTINCT `value` ORDER BY `value` SEPARATOR ', ') FROM ticket_header th WHERE th.ticket_nachricht = ".$recv_messages[0]['id']." AND `value` <> '".$senderAddress."' AND type='cc'";
|
$sql = "SELECT GROUP_CONCAT(DISTINCT `value` ORDER BY `value` SEPARATOR ', ') FROM ticket_header th WHERE th.ticket_nachricht = ".$recv_messages[0]['id']." AND `value` <> '".$senderAddress."' AND type='cc'";
|
||||||
$cc = $this->app->DB->Select($sql);
|
$cc = $this->app->DB->Select($sql);
|
||||||
}
|
}
|
||||||
@ -620,8 +626,10 @@ class Ticket {
|
|||||||
// Attachments
|
// Attachments
|
||||||
$files = $this->app->erp->GetDateiSubjektObjektDateiname('Anhang','Ticket',$drafted_messages[0]['id'],"");
|
$files = $this->app->erp->GetDateiSubjektObjektDateiname('Anhang','Ticket',$drafted_messages[0]['id'],"");
|
||||||
|
|
||||||
if ($cc != '') {
|
if ($drafted_messages[0]['mail_cc'] != '') {
|
||||||
$cc = explode(',',$drafted_messages[0]['mail_cc']);
|
$cc = explode(',',$drafted_messages[0]['mail_cc']);
|
||||||
|
} else {
|
||||||
|
$cc = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
|
Loading…
Reference in New Issue
Block a user