Show result of CHECK/OPTIMIZE/REPAIR queries for multiple tables.

This commit is contained in:
Michal Čihař
2003-03-24 15:39:39 +00:00
parent b06b69dd06
commit 9d24001304
5 changed files with 55 additions and 29 deletions

View File

@@ -8,20 +8,26 @@
* because there is no table in the database ($is_info is TRUE)
*/
if (empty($is_info)) {
include('./db_details_common.php3');
$url_query .= '&goto=db_details_structure.php3';
if (!defined('PMA_GRAB_GLOBALS_INCLUDED')) {
include('./libraries/grab_globals.lib.php3');
}
if (!defined('PMA_COMMON_LIB_INCLUDED')) {
include('./libraries/common.lib.php3');
}
// Drops/deletes multiple tables if required
if ((!empty($submit_mult) && isset($selected_tbl))
// Drops/deletes/etc. multiple tables if required
if ((!empty($submit_mult) && isset($selected_tbl))
|| isset($mult_btn)) {
$action = 'db_details_structure.php3';
include('./mult_submits.inc.php3');
}
}
include('./db_details_common.php3');
$url_query .= '&goto=db_details_structure.php3';
// Gets the database structure
$sub_part = '_structure';
include('./db_details_db_info.php3');
echo "\n";
// Gets the database structure
$sub_part = '_structure';
include('./db_details_db_info.php3');
echo "\n";
}