For Lo�c: fixed bug #578321.

This commit is contained in:
Alexander M. Turek
2002-07-08 17:30:03 +00:00
parent e60df8ab5b
commit 4730ac02e6
2 changed files with 5 additions and 2 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2002-07-08 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* tbl_create.php3: Fixed bug #578321 (Wrong page after table creation).
2002-07-08 Marc Delisle <lem9@users.sourceforge.net> 2002-07-08 Marc Delisle <lem9@users.sourceforge.net>
* libraries/display_tbl.lib.php3: bug 577645: extra space in the cell * libraries/display_tbl.lib.php3: bug 577645: extra space in the cell
* libraries/common.lib.php3, defines.lib.php3, defines_php.lib.php3, * libraries/common.lib.php3, defines.lib.php3, defines_php.lib.php3,

View File

@@ -209,7 +209,7 @@ if (isset($submit)) {
$sql_query = $query_cpy . ';'; $sql_query = $query_cpy . ';';
unset($query_cpy); unset($query_cpy);
$message = $strTable . ' ' . htmlspecialchars($table) . ' ' . $strHasBeenCreated; $message = $strTable . ' ' . htmlspecialchars($table) . ' ' . $strHasBeenCreated;
include('./tbl_properties.php3'); include('./' . $cfg['DefaultTabTable']);
exit(); exit();
} // end do create table } // end do create table