back links

This commit is contained in:
Marc Delisle
2002-07-21 00:23:44 +00:00
parent efadd60332
commit 49a3af59ed
6 changed files with 9 additions and 2 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$
$Source$
2002-07-20 Marc Delisle <lem9@users.sourceforge.net>
* tbl_properties*: missing $sub_part for back links (bug 584069)
2002-07-19 Alexander M. Turek <rabus@users.sourceforge.net>
* tbl_properties_links.php3: Fixed bug #583969.
* lang/german-*.inc.php3: Updates.

View File

@@ -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');
?>

View File

@@ -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');

View File

@@ -46,6 +46,7 @@ if (isset($message)) {
/**
* Gets tables informations and displays top links
*/
$sub_part = '_options';
require('./tbl_properties_table_info.php3');

View File

@@ -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) {
<!-- Browse links -->
<?php
echo "\n";
$sub_part = '_structure';
//$sub_part = '_structure';
include('./tbl_properties_links.php3');
} // end if ($fields_cnt > 20)
echo "\n\n";

View File

@@ -40,7 +40,7 @@ mysql_free_result($table_info_result);
* Displays top menu links
*/
echo '<!-- top menu -->' . "\n";
$sub_part = '_table_info';
//$sub_part = '_table_info';
require('./tbl_properties_links.php3');