diff --git a/admin/profile.php b/admin/profile.php index 7fad65db..e4df8727 100644 --- a/admin/profile.php +++ b/admin/profile.php @@ -311,14 +311,17 @@ require_once(HESK_PATH . 'inc/show_admin_nav.inc.php');
+ +
-
+
@@ -419,6 +422,7 @@ function update_profile() { $_SESSION['new']['notify_reply_my'] = empty($_POST['notify_reply_my']) ? 0 : 1; $_SESSION['new']['notify_assigned'] = empty($_POST['notify_assigned']) ? 0 : 1; $_SESSION['new']['notify_note'] = empty($_POST['notify_note']) ? 0 : 1; + $_SESSION['new']['notify_note_unassigned'] = empty($_POST['notify_note_unassigned']) ? 0 : 1; $_SESSION['new']['notify_pm'] = empty($_POST['notify_pm']) ? 0 : 1; $_SESSION['new']['default_notify_customer_email'] = empty($_POST['default_notify_customer_email']) ? 1 : 0; @@ -451,6 +455,7 @@ function update_profile() { `notify_assigned`='".intval($_SESSION['new']['notify_assigned'])."' , `notify_pm`='".intval($_SESSION['new']['notify_pm'])."', `notify_note`='".intval($_SESSION['new']['notify_note'])."', + `notify_note_unassigned`='".intval($_SESSION['new']['notify_note_unassigned'])."', `default_notify_customer_email`='".intval($_SESSION['new']['default_notify_customer_email'])."' WHERE `id`='".intval($_SESSION['id'])."' LIMIT 1" ); diff --git a/language/en/text.php b/language/en/text.php index 2694b45c..e5fe01a1 100644 --- a/language/en/text.php +++ b/language/en/text.php @@ -26,6 +26,7 @@ $hesklang['ticket_closed'] = '[#%%TRACK_ID%%] Ticket closed/resolved'; $hesklang['ticket_reopen'] = '[#%%TRACK_ID%%] Ticket reopened'; $hesklang['ticket_reopen_assigned'] = '[#%%TRACK_ID%%] Assigned ticket reopened'; $hesklang['create_based_on_contact'] = 'Create Ticket For Same Contact'; +$hesklang['notify_note_unassigned'] = 'Someone adds a note to a ticket not assigned to me'; // ADDED OR MODIFIED IN NuMods 1.5.0 $hesklang['ticket_auto_refresh'] = 'Ticket Table Auto-Refresh:';