Causes a big bug: can no longer create a table.
This is because, in tbl_create.php:
// Does table exist? else if (!(PMA_DBI_get_fields($db, $table) === FALSE)) { PMA_mysqlDie(sprintf($strTableAlreadyExists, htmlspecialchars($table)), '', '', $err_url);
and now, this function returns an empty array instead of returning false.
Marc
Marc Delisle schrieb:
Causes a big bug: can no longer create a table.
This is because, in tbl_create.php:
// Does table exist? else if (!(PMA_DBI_get_fields($db, $table) === FALSE)) { PMA_mysqlDie(sprintf($strTableAlreadyExists, htmlspecialchars($table)), '', '', $err_url);
and now, this function returns an empty array instead of returning false.
should be fixed in CVS
Sebastian Mendel a écrit :
Marc Delisle schrieb:
Causes a big bug: can no longer create a table.
This is because, in tbl_create.php:
// Does table exist? else if (!(PMA_DBI_get_fields($db, $table) === FALSE)) { PMA_mysqlDie(sprintf($strTableAlreadyExists, htmlspecialchars($table)), '', '', $err_url);
and now, this function returns an empty array instead of returning false.
should be fixed in CVS
Indeed, thanks.