fixes #1343 remove auto-escape of reserved keywords on MySQL 8

ie no more adding backticks around "rank" and "groups". Too many collateral damages.
This commit is contained in:
plegall
2021-08-03 19:27:31 +02:00
parent 9a840edf66
commit 1ec5a2933c
8 changed files with 15 additions and 32 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ $query.= '
if ('recent_cats' != $page['section'])
{
$query.= '
ORDER BY rank';
ORDER BY `rank`';
}
$result = pwg_query($query);