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:
authorJo Michael <me@mynetx.net>2012-03-12 00:16:21 +0400
committerJo Michael <me@mynetx.net>2012-03-12 00:16:21 +0400
commitaae81a3286e7bb59f316c5e2b763a71ff95d54d8 (patch)
treec1270292e6b7f1379923e1c23ce9f0da3f79dd30 /db_operations.php
parent2c3287c0b7a5bfa1eaba2a914c503b46ff768a79 (diff)
Updated naming of REQUEST importer in db_operations.php
Diffstat (limited to 'db_operations.php')
-rw-r--r--db_operations.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/db_operations.php b/db_operations.php
index 270fb9ad07..c8e9d67c70 100644
--- a/db_operations.php
+++ b/db_operations.php
@@ -26,12 +26,12 @@ $GLOBALS['js_include'][] = 'db_operations.js';
/**
* Sets globals from $_REQUEST (we're using GET on ajax, POST otherwise)
*/
-$post_params = array(
+$request_params = array(
'drop_if_exists'
);
-foreach ($post_params as $one_post_param) {
- if (isset($_REQUEST[$one_post_param])) {
- $GLOBALS[$one_post_param] = $_REQUEST[$one_post_param];
+foreach ($request_params as $one_request_param) {
+ if (isset($_REQUEST[$one_request_param])) {
+ $GLOBALS[$one_request_param] = $_REQUEST[$one_request_param];
}
}