#62 The profile page can now handle default settings for sending emails on replies
This commit is contained in:
parent
1fa8e19f98
commit
2c03c30e61
@ -256,6 +256,14 @@ require_once(HESK_PATH . 'inc/show_admin_nav.inc.php');
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="default_notify_customer_email" class="col-sm-3 control-label"><?php echo $hesklang['notify_customer_email']; ?>:</label>
|
||||
<div class="col-sm-9">
|
||||
<div class="checkbox">
|
||||
<label><input type="checkbox" name="default_notify_customer_email" value="1" <?php if (!empty($_SESSION['new']['default_notify_customer_email'])) {echo 'checked="checked"';}?>> <?php echo $hesklang['notify_customer_email_text']; ?></label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php } ?>
|
||||
<div class="form-group">
|
||||
<label for="autoRefresh" class="col-sm-3 control-label"><?php echo $hesklang['ticket_auto_refresh']; ?></label>
|
||||
@ -412,6 +420,7 @@ function update_profile() {
|
||||
$_SESSION['new']['notify_assigned'] = empty($_POST['notify_assigned']) ? 0 : 1;
|
||||
$_SESSION['new']['notify_note'] = empty($_POST['notify_note']) ? 0 : 1;
|
||||
$_SESSION['new']['notify_pm'] = empty($_POST['notify_pm']) ? 0 : 1;
|
||||
$_SESSION['new']['default_notify_customer_email'] = empty($_POST['default_notify_customer_email']) ? 0 : 1;
|
||||
|
||||
/* Any errors? */
|
||||
if (strlen($hesk_error_buffer))
|
||||
@ -441,7 +450,8 @@ function update_profile() {
|
||||
`notify_reply_my`='".intval($_SESSION['new']['notify_reply_my'])."' ,
|
||||
`notify_assigned`='".intval($_SESSION['new']['notify_assigned'])."' ,
|
||||
`notify_pm`='".intval($_SESSION['new']['notify_pm'])."',
|
||||
`notify_note`='".intval($_SESSION['new']['notify_note'])."'
|
||||
`notify_note`='".intval($_SESSION['new']['notify_note'])."',
|
||||
`default_notify_customer_email`='".intval($_SESSION['new']['default_notify_customer_email'])."'
|
||||
WHERE `id`='".intval($_SESSION['id'])."' LIMIT 1"
|
||||
);
|
||||
|
||||
|
@ -34,6 +34,8 @@ $hesklang['user_deactivated'] = 'User has been deactivated';
|
||||
$hesklang['active_user'] = 'Is active user';
|
||||
$hesklang['self_deactivation'] = 'You cannot deactivate yourself!';
|
||||
$hesklang['inactive_user'] = 'Your account is currently inactive. Contact an administrator for more information.';
|
||||
$hesklang['notify_customer_email'] = 'Emails to customer on reply';
|
||||
$hesklang['notify_customer_email_text'] = 'Don\'t send email notifications of replies to the customer by default';
|
||||
|
||||
// ADDED OR MODIFIED IN NuMods 1.4.0
|
||||
$hesklang['numods'] = 'NuMods';
|
||||
|
Loading…
x
Reference in New Issue
Block a user