From ca3bfcde1c3d801e79f688aa3fcc9e052d1a750f Mon Sep 17 00:00:00 2001 From: Mike Koch Date: Tue, 19 Sep 2017 12:56:27 -0400 Subject: [PATCH] Add missing column --- install/mods-for-hesk/sql/installSql.php | 1 + language/en/text.php | 1 + 2 files changed, 2 insertions(+) diff --git a/install/mods-for-hesk/sql/installSql.php b/install/mods-for-hesk/sql/installSql.php index 60c3e5d4..cce64b4a 100644 --- a/install/mods-for-hesk/sql/installSql.php +++ b/install/mods-for-hesk/sql/installSql.php @@ -1149,6 +1149,7 @@ function execute320Scripts() { executeQuery("CREATE TABLE `" . hesk_dbEscape($hesk_settings['db_pfix']) . "audit_trail` ( `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY, + `ticket_id` INT NOT NULL, `language_key` VARCHAR(100) NOT NULL, `date` TIMESTAMP NOT NULL)"); executeQuery("CREATE TABLE `" . hesk_dbEscape($hesk_settings['db_pfix']) . "audit_trail_to_replacement_values` ( diff --git a/language/en/text.php b/language/en/text.php index baaccd0c..66384d9c 100644 --- a/language/en/text.php +++ b/language/en/text.php @@ -1146,6 +1146,7 @@ $hesklang['maxpost']='You probably tried to submit more data than this server ac // --> Ticket history log // Unless otherwise specified, first %s will be replaced with date and second with name/username +// THESE STRINGS ARE DEPRECATED AS OF MODS FOR HESK 3.2.0 $hesklang['thist1']='
  • %s | moved to category %s by %s
  • '; // %s = date, new category, user making change $hesklang['thist2']='
  • %s | assigned to %s by %s
  • '; // %s = date, assigned user, user making change $hesklang['thist3']='
  • %s | closed by %s
  • ';