diff --git a/ChangeLog b/ChangeLog index 81dcdccb9..b4e2961fa 100755 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,7 @@ $Source$ * lang/*.php3, libraries/common.lib.php3: new features EXPLAIN and "Create PHP Code", thanks to Mike Beck * sql.php3: $is_analyse was sometimes undefined + * tbl_alter.php3: go back to structure sub-page 2002-05-24 Loïc Chapeaux * config.inc.php3; db_details_links.php3; db_search.php3; diff --git a/tbl_alter.php3 b/tbl_alter.php3 index de7d47207..b1f66eaca 100755 --- a/tbl_alter.php3 +++ b/tbl_alter.php3 @@ -17,7 +17,7 @@ if (!isset($submit_mult)) { /** * Defines the url to return to in case of error in a sql statement */ -$err_url = 'tbl_properties.php3' +$err_url = 'tbl_properties_structure.php3' . '?lang=' . $lang . '&server=' . $server . '&db=' . urlencode($db) @@ -92,7 +92,7 @@ if (isset($submit)) { $result = mysql_query($sql_query) or PMA_mysqlDie('', '', '', $err_url); $message = $strTable . ' ' . htmlspecialchars($table) . ' ' . $strHasBeenAltered; $btnDrop = 'Fake'; - include('./tbl_properties.php3'); + include('./tbl_properties_structure.php3'); exit(); }