Default pages for tables / databases.

This commit is contained in:
Alexander M. Turek
2002-08-10 13:11:00 +00:00
parent b834fbc15f
commit d782c39971
2 changed files with 6 additions and 4 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$
$Source$
2002-08-10 Alexander M. Turek <rabus@users.sourceforge.net>
* sql.php3: Default pages for tables / databases.
2002-08-10 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* config.inc.php3: coding standards.
* db_details.php3; db_details_qbe.php3; tbl_change.php3;
@@ -42,7 +45,6 @@ $Source$
- Cleaned up and re-arranged Configuration section to match
config.inc.php3
2002-08-08 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* left.php3: xhtml fixes (id name must start with a letter).
* pdf_pages.php3, tbl_printview.php3, tbl_realtion.php3,

View File

@@ -23,7 +23,7 @@ if (!empty($goto)) {
} // end if (security checkings)
if (empty($goto)) {
$goto = (empty($table)) ? 'db_details.php3' : 'tbl_properties.php3';
$goto = (empty($table)) ? $cfg['DefaultTabDatabase'] : $cfg['DefaultTabTable'];
$is_gotofile = TRUE;
} // end if
if (!isset($err_url)) {