1
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2025-08-09 05:02:44 +03:00

remove change to table_by_key() as the original bug has been found in Login

This commit is contained in:
David Goodwin
2021-01-26 21:06:15 +00:00
parent bcf1f8c7e4
commit 52933a6307
2 changed files with 6 additions and 6 deletions

View File

@@ -2091,8 +2091,6 @@ function table_by_key($table_key) {
$table = $CONF['database_prefix'] . $table;
if (db_mysql()) {
// try and ensure we don't get ``table`` ?
$table = preg_replace('/`/', '', $table);
return "`" . $table . "`";
}