Skip to content
This repository has been archived by the owner on Sep 14, 2020. It is now read-only.

Commit

Permalink
Merge branch '2020-1-1' into 'master'
Browse files Browse the repository at this point in the history
2020.1.1

See merge request mike-koch/Mods-for-HESK!130
  • Loading branch information
mike-koch committed Jul 5, 2020
2 parents a2e6bb9 + 17fc4ed commit 9dbcb92
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion install/install_functions.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

// We will be installing this HESK version:
define('HESK_NEW_VERSION','2.8.6');
define('MODS_FOR_HESK_NEW_VERSION','2020.1.0');
define('MODS_FOR_HESK_NEW_VERSION','2020.1.1');
define('REQUIRE_PHP_VERSION','5.3.0');
define('REQUIRE_MYSQL_VERSION','5.0.7');

Expand Down
2 changes: 2 additions & 0 deletions install/migrations/core.php
Original file line number Diff line number Diff line change
Expand Up @@ -244,5 +244,7 @@ function getAllMigrations() {
183 => new UpdateMigration('2019.1.0', '2018.2.0', 183),
// 2020.1.0
184 => new UpdateMigration('2020.1.0', '2019.1.0', 184),
// 2020.1.1
185 => new UpdateMigration('2020.1.1', '2020.1.0', 185),
);
}
2 changes: 1 addition & 1 deletion submit_ticket.php
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@
$tmpvar['screen_resolution_width'] = hesk_POST('screen_resolution_width');
$tmpvar['screen_resolution_width'] = ($tmpvar['screen_resolution_width'] === '') ? 'NULL' : intval($tmpvar['screen_resolution_width']);

$tmpvar['user_agent'] = $_SERVER['HTTP_USER_AGENT'];
$tmpvar['user_agent'] = hesk_input($_SERVER['HTTP_USER_AGENT']);

// Tickets from customers never have a due date
$tmpvar['due_date'] = '';
Expand Down

0 comments on commit 9dbcb92

Please sign in to comment.