#62 Ticket screen now honors the email profile setting
This commit is contained in:
parent
7c40c25cff
commit
95c89c612a
@ -1360,10 +1360,12 @@ function hesk_printReplyForm() {
|
||||
</select></div><br />
|
||||
<label><input type="checkbox" name="signature" value="1" checked="checked" /> <?php echo $hesklang['attach_sign']; ?></label>
|
||||
(<a href="profile.php"><?php echo $hesklang['profile_settings']; ?></a>)<br />
|
||||
<label><input type="checkbox" name="no_notify" value="1" <?php if (empty($ticket['email'])) { echo 'checked="checked" disabled'; } ?>> <?php echo $hesklang['dsen']; ?></label><br/><br/>
|
||||
<?php if (empty($ticket['email'])) {
|
||||
echo '<input type="hidden" name="no_notify" value="1">';
|
||||
} ?>
|
||||
<?php if (empty($ticket['email'])) { ?>
|
||||
<label><input type="checkbox" name="no_notify" value="1" checked="checked" disabled> <?php echo $hesklang['dsen']; ?></label><br/><br/>
|
||||
<input type="hidden" name="no_notify" value="1">
|
||||
<?php } else { ?>
|
||||
<label><input type="checkbox" name="no_notify" value="1" <?php if ($_SESSION['default_notify_customer_email']) { echo 'checked'; } ?>> <?php echo $hesklang['dsen']; ?></label><br/><br/>
|
||||
<?php } ?>
|
||||
<input type="hidden" name="orig_id" value="<?php echo $ticket['id']; ?>" />
|
||||
<input type="hidden" name="token" value="<?php hesk_token_echo(); ?>" />
|
||||
<input class="btn btn-default" type="submit" value="<?php echo $hesklang['submit_reply']; ?>" />
|
||||
|
Loading…
x
Reference in New Issue
Block a user