Skip to content
This repository has been archived by the owner on Sep 14, 2020. It is now read-only.

Commit

Permalink
Merge branch '3-2-3' into 'master'
Browse files Browse the repository at this point in the history
3.2.3

See merge request mike-koch/Mods-for-HESK!80
  • Loading branch information
mike-koch committed Nov 20, 2017
2 parents f8ab899 + fefe1e2 commit 15b9714
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions admin/admin_ticket.php
Expand Up @@ -1561,7 +1561,7 @@ function hesk_getAdminButtons($category_id)

function hesk_getAdminButtonsInTicket($reply = 0, $white = 1)
{
global $hesk_settings, $hesklang, $ticket, $reply, $trackingID, $can_edit, $can_archive, $can_delete, $isManager;
global $hesk_settings, $hesklang, $ticket, $trackingID, $can_edit, $can_archive, $can_delete, $isManager;

$options = $reply ? '' : '<div class="pull-right">';

Expand Down Expand Up @@ -1934,7 +1934,7 @@ function mfh_print_reply($reply) {
?>
</div>
<div class="col-md-6 text-right">
<?php echo hesk_getAdminButtonsInTicket(); ?>
<?php echo hesk_getAdminButtonsInTicket($reply); ?>
</div>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions inc/email_functions.inc.php
Expand Up @@ -512,10 +512,10 @@ function hesk_mail($to, $subject, $message, $htmlMessage, $modsForHesk_settings,
$headers .= "MIME-Version: 1.0\n";
$headers .= "From: $hesk_settings[from_header]\n";
if (count($cc) > 0) {
$headers .= "Cc: " . implode(',', $cc);
$headers .= "Cc: " . implode(',', $cc) . "\n";
}
if (count($bcc) > 0) {
$headers .= "Bcc: " . implode(',', $bcc);
$headers .= "Bcc: " . implode(',', $bcc) . "\n";
}
$headers .= "Reply-To: $hesk_settings[from_header]\n";
$headers .= "Return-Path: $hesk_settings[webmaster_mail]\n";
Expand Down

0 comments on commit 15b9714

Please sign in to comment.