From 70dbf2aa568c95ddcdda104d27325e2bbf281e2f Mon Sep 17 00:00:00 2001 From: Thilina Buddika Date: Mon, 13 Aug 2012 23:47:11 +0530 Subject: [PATCH] missing global variables --- db_structure.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/db_structure.php b/db_structure.php index acffb070e4..80e1ee582d 100644 --- a/db_structure.php +++ b/db_structure.php @@ -23,6 +23,19 @@ $scripts->addFile('tbl_change.js'); $scripts->addFile('jquery/timepicker.js'); $common_functions = PMA_CommonFunctions::getInstance(); +$post_params = array( + 'error', + 'is_info', + 'message', + 'mult_btn', + 'selected_tbl', + 'submit_mult' +); +foreach ($post_params as $one_post_param) { + if (isset($_POST[$one_post_param])) { + $GLOBALS[$one_post_param] = $_POST[$one_post_param]; + } +} /** * Prepares the tables list if the user where not redirected to this script * because there is no table in the database ($is_info is true)