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>2012-03-15 01:13:47 +0400
committerMarc Delisle <marc@infomarc.info>2012-03-15 01:13:47 +0400
commit2f10510fffb613825b23eff076c7e383a2f44963 (patch)
treeb12fd20b34505574b4ccbe68c626f9a6584e9796 /db_operations.php
parent28b5491fd8196f8c86ec778881c0a18794dcc6c1 (diff)
No longer depend on grab_globals
Diffstat (limited to 'db_operations.php')
-rw-r--r--db_operations.php13
1 files changed, 12 insertions, 1 deletions
diff --git a/db_operations.php b/db_operations.php
index c8e9d67c70..080686735f 100644
--- a/db_operations.php
+++ b/db_operations.php
@@ -27,7 +27,18 @@ $GLOBALS['js_include'][] = 'db_operations.js';
* Sets globals from $_REQUEST (we're using GET on ajax, POST otherwise)
*/
$request_params = array(
- 'drop_if_exists'
+ 'add_constraints',
+ 'comment',
+ 'create_database_before_copying',
+ 'db_collation',
+ 'db_copy',
+ 'db_rename',
+ 'drop_if_exists',
+ 'newname',
+ 'sql_auto_increment',
+ 'submitcollation',
+ 'switch_to_new',
+ 'what'
);
foreach ($request_params as $one_request_param) {
if (isset($_REQUEST[$one_request_param])) {