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>2013-07-25 15:13:37 +0400
committerMarc Delisle <marc@infomarc.info>2013-07-25 15:13:37 +0400
commit539eeed0574c82d8074c2a08f4077e7379374769 (patch)
tree6e4002d6f435fbb6e72aa3d3f37da9ece98c5101 /tbl_select.php
parent04d815488d57fb40a9dc92dc46e1258d4a720c15 (diff)
Globals generated from POST were not used
Diffstat (limited to 'tbl_select.php')
-rw-r--r--tbl_select.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/tbl_select.php b/tbl_select.php
index e0fd01f113..f91b0d1c6c 100644
--- a/tbl_select.php
+++ b/tbl_select.php
@@ -27,16 +27,6 @@ $scripts->addFile('tbl_change.js');
$scripts->addFile('jquery/jquery-ui-timepicker-addon.js');
$scripts->addFile('gis_data_editor.js');
-$post_params = array(
- 'ajax_request',
- 'session_max_rows'
-);
-foreach ($post_params as $one_post_param) {
- if (isset($_POST[$one_post_param])) {
- $GLOBALS[$one_post_param] = $_POST[$one_post_param];
- }
-}
-
$table_search = new PMA_TableSearch($db, $table, "normal");
/**