diff --git a/ChangeLog b/ChangeLog index d93842f6a..c3a5615ed 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2002-07-20 Marc Delisle + * tbl_properties*: missing $sub_part for back links (bug 584069) + 2002-07-19 Alexander M. Turek * tbl_properties_links.php3: Fixed bug #583969. * lang/german-*.inc.php3: Updates. diff --git a/tbl_properties_export.php3 b/tbl_properties_export.php3 index fc9b0c123..6e4cc31a7 100755 --- a/tbl_properties_export.php3 +++ b/tbl_properties_export.php3 @@ -6,6 +6,7 @@ * Gets tables informations and displays top links */ require('./tbl_properties_common.php3'); +$sub_part = '_export'; require('./tbl_properties_table_info.php3'); ?> diff --git a/tbl_properties_operations.php3 b/tbl_properties_operations.php3 index 99cc89467..c4829f728 100755 --- a/tbl_properties_operations.php3 +++ b/tbl_properties_operations.php3 @@ -31,6 +31,7 @@ if (isset($submitorderby) && !empty($order_field)) { /** * Gets tables informations and displays top links */ +$sub_part = '_operations'; require('./tbl_properties_table_info.php3'); diff --git a/tbl_properties_options.php3 b/tbl_properties_options.php3 index 4f8fceaed..027784730 100755 --- a/tbl_properties_options.php3 +++ b/tbl_properties_options.php3 @@ -46,6 +46,7 @@ if (isset($message)) { /** * Gets tables informations and displays top links */ +$sub_part = '_options'; require('./tbl_properties_table_info.php3'); diff --git a/tbl_properties_structure.php3 b/tbl_properties_structure.php3 index 6960c3519..43a9c7272 100755 --- a/tbl_properties_structure.php3 +++ b/tbl_properties_structure.php3 @@ -24,6 +24,7 @@ if ((!empty($submit_mult) && isset($selected_fld)) * Prepares the table structure display */ // 1. Get table information +$sub_part = '_structure'; require('./tbl_properties_table_info.php3'); // 2. Gets table keys and retains them @@ -263,7 +264,7 @@ if ($fields_cnt > 20) { 20) echo "\n\n"; diff --git a/tbl_properties_table_info.php3 b/tbl_properties_table_info.php3 index 194061246..a58f15ff8 100755 --- a/tbl_properties_table_info.php3 +++ b/tbl_properties_table_info.php3 @@ -40,7 +40,7 @@ mysql_free_result($table_info_result); * Displays top menu links */ echo '' . "\n"; -$sub_part = '_table_info'; +//$sub_part = '_table_info'; require('./tbl_properties_links.php3');