Skip to content
Snippets Groups Projects
Commit 08ce510a authored by Peter Rotich's avatar Peter Rotich
Browse files

bug: Dont send out reply when staff selects "no reply".

User got emailed reply even when staff selected  -Do Not Email Reply-
parent b595c23b
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ if($_POST && !$errors):
if(!$errors && $_FILES['attachments'])
$vars['files'] = AttachmentFile::format($_FILES['attachments']);
if(!$errors && ($response=$ticket->postReply($vars, $errors, isset($_POST['emailreply'])))) {
if(!$errors && ($response=$ticket->postReply($vars, $errors, $_POST['emailreply']))) {
$msg='Reply posted successfully';
$ticket->reload();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment