1
0
Fork 0

fixed quotation in emulation of mysql_list_tables using SHOW TABLES

Dieser Commit ist enthalten in:
e-dschungel 2017-01-29 23:01:57 +01:00
Ursprung 72998c0df3
Commit b91ee9e822
2 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen

Datei anzeigen

@ -206,7 +206,7 @@ function ImportCreateTable()
{
global $sql,$lang,$db,$config;
$tbl=Array();
$tabellen=mysqli_query($config['dbconnection'], "SHOW TABLES FROM $db");
$tabellen=mysqli_query($config['dbconnection'], "SHOW TABLES FROM `$db`");
$num_tables=mysqli_num_rows($tabellen);
for ($i=0; $i < $num_tables; $i++)
{