You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When tables names contain special characters ('-' in my case), the line 230 fails, you need to escape the name with `, the ligne should then be :
$tables = $this->db->fetch_numeric('SHOW FULL TABLES WHERE Table_Type = "BASE TABLE" AND Tables_in_'.$this->db->name.' LIKE "' . $this->db->escape_like($table_prefix) . '%"
');
The text was updated successfully, but these errors were encountered:
When tables names contain special characters ('-' in my case), the line 230 fails, you need to escape the name with `, the ligne should then be :
$tables = $this->db->fetch_numeric('SHOW FULL TABLES WHERE Table_Type = "BASE TABLE" AND
Tables_in_'.$this->db->name.'
LIKE "' . $this->db->escape_like($table_prefix) . '%"');
The text was updated successfully, but these errors were encountered: