Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Delisle <marc@infomarc.info>2005-05-08 16:59:08 +0400
committerMarc Delisle <marc@infomarc.info>2005-05-08 16:59:08 +0400
commita5e99d1dec0de6450e77758c2d26929ef12c6d62 (patch)
tree9e73ea6af75be2ee6afc0cde1803b3b90e18156a /read_dump.php
parent40bbf9e2628175b93a54ddb235d3f14343146da8 (diff)
bug #1189664, js error when 2 queries are submitted at once
Diffstat (limited to 'read_dump.php')
-rw-r--r--read_dump.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/read_dump.php b/read_dump.php
index 5b61b56a04..96b7c7a993 100644
--- a/read_dump.php
+++ b/read_dump.php
@@ -417,7 +417,12 @@ if (!empty($id_bookmark) && $action_bookmark == 2) {
$message = $strSuccess;
}
// Loads to target script
-if ($goto == 'db_details.php' || $goto == 'tbl_properties.php') {
+if ($goto == 'db_details.php' || $goto == 'tbl_properties.php' || $goto == 'tbl_properties_structure.php') {
+
+// maybe we should do this instead:
+//if (strpos(' ' . $goto, 'db_details') == 1 || strpos(' ' . $goto, 'tbl_properties') == 1) {
+// but I'm not sure
+
$js_to_run = 'functions.js';
}
if ($goto != 'main.php') {