From e6accf7d69e51b705640f7f476c99c3b5eb6855f Mon Sep 17 00:00:00 2001 From: Marco Vogt Date: Mon, 28 Mar 2022 12:47:21 +0200 Subject: [PATCH] Escape system table name due to changes in MySQL 8.0.3 --- libraries/dba/models/SystemFactory.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/dba/models/SystemFactory.class.php b/libraries/dba/models/SystemFactory.class.php index c19b7fe0b7..e49fe3355a 100644 --- a/libraries/dba/models/SystemFactory.class.php +++ b/libraries/dba/models/SystemFactory.class.php @@ -32,7 +32,7 @@ function getModelName() { } function getModelTable() { - return "System"; + return "`System`"; } function isCachable() {