fixed an error about whether to display table name or not at the top of the page
This commit is contained in:
6
sql.php3
6
sql.php3
@@ -65,6 +65,9 @@ if (isset($btnDrop) && $btnDrop == $strNo) {
|
|||||||
$goto = $back;
|
$goto = $back;
|
||||||
}
|
}
|
||||||
if (file_exists('./' . $goto)) {
|
if (file_exists('./' . $goto)) {
|
||||||
|
if ($goto == 'db_details.php3' && !empty($table)) {
|
||||||
|
unset($table);
|
||||||
|
}
|
||||||
include('./' . ereg_replace('\.\.*', '.', $goto));
|
include('./' . ereg_replace('\.\.*', '.', $goto));
|
||||||
} else {
|
} else {
|
||||||
header('Location: ' . $cfgPmaAbsoluteUri . $goto);
|
header('Location: ' . $cfgPmaAbsoluteUri . $goto);
|
||||||
@@ -233,6 +236,9 @@ else {
|
|||||||
if ($goto != 'main.php3') {
|
if ($goto != 'main.php3') {
|
||||||
include('./header.inc.php3');
|
include('./header.inc.php3');
|
||||||
}
|
}
|
||||||
|
if ($goto == 'db_details.php3' && !empty($table)) {
|
||||||
|
unset($table);
|
||||||
|
}
|
||||||
include('./' . $goto);
|
include('./' . $goto);
|
||||||
} // end if file_exist
|
} // end if file_exist
|
||||||
else {
|
else {
|
||||||
|
@@ -258,6 +258,9 @@ if (!$result) {
|
|||||||
mysql_die($error);
|
mysql_die($error);
|
||||||
} else {
|
} else {
|
||||||
if (file_exists('./' . $goto)) {
|
if (file_exists('./' . $goto)) {
|
||||||
|
if ($goto == 'db_details.php3' && !empty($table)) {
|
||||||
|
unset($table);
|
||||||
|
}
|
||||||
include('./header.inc.php3');
|
include('./header.inc.php3');
|
||||||
$message = $strModifications;
|
$message = $strModifications;
|
||||||
include('./' . ereg_replace('\.\.*', '.', $goto));
|
include('./' . ereg_replace('\.\.*', '.', $goto));
|
||||||
|
Reference in New Issue
Block a user