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:
authorJ.M <me@mynetx.net>2013-05-13 13:27:56 +0400
committerJ.M <me@mynetx.net>2013-05-13 13:27:56 +0400
commit529903e0dd9f5585a92118838928afba79c35147 (patch)
tree32a0c5f5e06ca0e16a1fdc1a520ecdda11660e42 /import.php
parent4113d9e98b9b46cb440e4c928c92719f0e090c58 (diff)
Fix bug #3907 undefined variables, function parameter problems
Thanks Rasmus Lerdorf for analyzing!
Diffstat (limited to 'import.php')
-rw-r--r--import.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/import.php b/import.php
index 1de72fe5b4..9d193ae63d 100644
--- a/import.php
+++ b/import.php
@@ -36,6 +36,7 @@ $post_params = array(
'local_import_file'
);
+// TODO: adapt full list of allowed parameters, as in export.php
foreach ($post_params as $one_post_param) {
if (isset($_POST[$one_post_param])) {
$GLOBALS[$one_post_param] = $_POST[$one_post_param];