go back to structure sub-page

This commit is contained in:
Marc Delisle
2002-05-24 13:01:28 +00:00
parent cb690c62ca
commit 6fafb1cf62
2 changed files with 3 additions and 2 deletions

View File

@@ -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<4C>c Chapeaux <lolo@phpheaven.net>
* config.inc.php3; db_details_links.php3; db_search.php3;

View File

@@ -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
. '&amp;server=' . $server
. '&amp;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();
}