Default page for databases.

This commit is contained in:
Alexander M. Turek
2002-08-11 21:08:00 +00:00
parent f17db49f6e
commit 9850e4bc7c
2 changed files with 3 additions and 2 deletions

View File

@@ -14,6 +14,7 @@ $Source$
* lang/chinese_*.inc.php3: Updates, thanks again to Siu Sun (siusun).
* lang/german-*.inc.php3: Updates.
* tbl_properties_links.php3: Use "TRUNCATE TABLE" instead of "TRUNCATE".
* tbl_indexes.php3: Default page for databases.
2002-08-10 Robin Johnson <robbat2@users.sourceforge.net>
* libraries/string.lib.php3:

View File

@@ -38,13 +38,13 @@ if (!defined('PMA_IDX_INCLUDED')) {
header('Location: ' . $cfg['PmaAbsoluteUri'] . 'main.php3?lang=' . $lang . '&convcharset=' . $convcharset . '&server=' . $server . (isset($message) ? '&message=' . urlencode($message) : '') . '&reload=1');
exit();
}
// Not a valid table name -> back to the db_details.php3
// Not a valid table name -> back to the default db_details sub-page
if (!empty($table)) {
$is_table = @PMA_mysql_query('SHOW TABLES LIKE \'' . PMA_sqlAddslashes($table, TRUE) . '\'');
}
if (empty($table)
|| !($is_table && @mysql_numrows($is_table))) {
header('Location: ' . $cfg['PmaAbsoluteUri'] . 'db_details.php3?lang=' . $lang . '&convcharset=' . $convcharset . '&server=' . $server .'&db=' . urlencode($db) . (isset($message) ? '&message=' . urlencode($message) : '') . '&reload=1');
header('Location: ' . $cfg['PmaAbsoluteUri'] . $cfg['DefaultTabDatabase'] . '?lang=' . $lang . '&convcharset=' . $convcharset . '&server=' . $server .'&db=' . urlencode($db) . (isset($message) ? '&message=' . urlencode($message) : '') . '&reload=1');
exit();
} else if (isset($is_table)) {
mysql_free_result($is_table);