Skip to content

Commit

Permalink
Escape system table name due to changes in MySQL 8.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vogti committed Mar 28, 2022
1 parent c2ea221 commit e6accf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/dba/models/SystemFactory.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function getModelName() {
}

function getModelTable() {
return "System";
return "`System`";
}

function isCachable() {
Expand Down

0 comments on commit e6accf7

Please sign in to comment.