From eb1d29057ba45814377d73ae27a4f2219a959068 Mon Sep 17 00:00:00 2001
From: Michael <Chefkeks@users.noreply.github.com>
Date: Thu, 14 Apr 2016 21:36:08 +0200
Subject: [PATCH] Update class.task.php

If I'm not mistaken this should be equivalent to "Ticket Updated", but it seems here the "d" at the end is missing - so the correct string I think is "Task Updated"!
https://github.com/osTicket/osTicket/blob/develop/include/class.task.php#L1235
https://github.com/osTicket/osTicket/blob/develop/include/class.ticket.php#L2828
---
 include/class.task.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/class.task.php b/include/class.task.php
index 2c93eac12..62113a499 100644
--- a/include/class.task.php
+++ b/include/class.task.php
@@ -1236,7 +1236,7 @@ class Task extends TaskModel implements RestrictedAccess, Threadable {
             $_errors = array();
             $this->postNote(array(
                         'note' => $vars['note'],
-                        'title' => __('Task Update'),
+                        'title' => __('Task Updated'),
                         ),
                     $_errors,
                     $thisstaff);
-- 
GitLab