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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2012-04-25 21:32:37 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2012-04-25 21:32:37 +0400
commit50e6f3b387379becc11911ff755f3d54579c69f7 (patch)
tree401d7b4ef43b5b33c83acf80021f9fcd8b0df600 /export.php
parenta817542fda9d84172ea378cc607156ca5d8c1b42 (diff)
Coding style improvements (ControlSignature)
Diffstat (limited to 'export.php')
-rw-r--r--export.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/export.php b/export.php
index 3e93bb758f..3c54a82672 100644
--- a/export.php
+++ b/export.php
@@ -16,8 +16,7 @@ require_once 'libraries/plugin_interface.lib.php';
* Sets globals from all $_POST (in export.php only)
* Would it not be tiresome to list all export-plugin options here?
*/
-foreach ($_POST as $one_post_param => $one_post_value)
-{
+foreach ($_POST as $one_post_param => $one_post_value) {
$GLOBALS[$one_post_param] = $one_post_value;
}