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:
authorAditya Sastry <ganeshaditya1@gmail.com>2014-03-05 23:20:51 +0400
committerAditya Sastry <ganeshaditya1@gmail.com>2014-03-05 23:20:51 +0400
commit7d7d17333c5256731d1c0c80b49d63af9e335f71 (patch)
tree1a17f5bac6bb5784caeed9b932f7fd6640ac35c2 /tbl_create.php
parent3c9c388dabb8ce3036bd0f244d29f0342bc508a2 (diff)
Fixes the problem with the breadcrumb navigation(Bug 4306)
The global variable table is used by both breadcrumb navigation as well as the tbl_create.php hence it needs to be set back to zero after use. Signed-off-by: Aditya Sastry <ganeshaditya1@gmail.com>
Diffstat (limited to 'tbl_create.php')
-rw-r--r--tbl_create.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/tbl_create.php b/tbl_create.php
index c380ce8219..6ff9ed0886 100644
--- a/tbl_create.php
+++ b/tbl_create.php
@@ -86,6 +86,9 @@ if (isset($_REQUEST['do_save_data'])) {
exit;
} // end do create table
+//This global variable needs to be reset for the headerclass to function properly
+$GLOBAL['table'] = '';
+
/**
* Displays the form used to define the structure of the table
*/