From 0aa0c280ff25d90380c9a514ff5c5877233d2652 Mon Sep 17 00:00:00 2001 From: ralf Date: Wed, 5 Apr 2023 08:44:15 +0200 Subject: [PATCH] add link to instructions how to install missing timezones in the DB to the logged error-message --- api/src/Db.php | 1 + 1 file changed, 1 insertion(+) diff --git a/api/src/Db.php b/api/src/Db.php index 5ae63ba3bf..003d841789 100644 --- a/api/src/Db.php +++ b/api/src/Db.php @@ -1242,6 +1242,7 @@ class Db // do NOT stall because DB does not know the TZ, report once per session if (empty($_SESSION[Session::EGW_APPSESSION_VAR][__CLASS__]['SQL-error-TZ'])) { + $e->details = 'Instructions to install timezones in your DB: https://mariadb.com/kb/en/mysql_tzinfo_to_sql/'; _egw_log_exception($e); $_SESSION[Session::EGW_APPSESSION_VAR][__CLASS__]['SQL-error-TZ'] = 'reported'; }