1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2025-01-31 20:11:38 +01:00

Fix Undefined variable $e in Header.php - closes #4505

This commit is contained in:
FreeScout 2025-01-23 09:06:19 -08:00
parent 417bf07f69
commit 08b8e1cf1d

View File

@ -847,7 +847,7 @@ class Header {
try {
$parsed_date = self::doParseDate($date);
} catch (\Exception $_e) {
} catch (\Exception $e) {
if (!isset($this->config["fallback_date"])) {
// Simply use current date.
// https://github.com/freescout-help-desk/freescout/issues/4159