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:
authorMichal Čihař <michal@cihar.com>2011-08-15 13:36:13 +0400
committerMichal Čihař <michal@cihar.com>2011-08-15 13:36:13 +0400
commitb0a108473e3087fa50b121ed48e16809e9ace20a (patch)
tree2797082d77f5592f3acb11a8410f798f8d2ecbf6 /schema_export.php
parentbbccd32c816b2bf56e3e36c8c0f86a42ca15dd37 (diff)
Remove not needed param from PMA_REL_create_page
Diffstat (limited to 'schema_export.php')
-rw-r--r--schema_export.php12
1 files changed, 2 insertions, 10 deletions
diff --git a/schema_export.php b/schema_export.php
index 3e1067d55e..2abe91f9e6 100644
--- a/schema_export.php
+++ b/schema_export.php
@@ -13,7 +13,7 @@ require './libraries/StorageEngine.class.php';
/**
* Include settings for relation stuff
- * get all variables needed for exporting relational schema
+ * get all variables needed for exporting relational schema
* in $cfgRelation
*/
require_once './libraries/relation.lib.php';
@@ -21,14 +21,6 @@ $cfgRelation = PMA_getRelationsParam();
require_once './libraries/transformations.lib.php';
require_once './libraries/Index.class.php';
-
-/**
- * This is to avoid "Command out of sync" errors. Before switching this to
- * a value of 0 (for MYSQLI_USE_RESULT), please check the logic
- * to free results wherever needed.
- */
-$query_default_option = PMA_DBI_QUERY_STORE;
-
include_once("./libraries/schema/Export_Relation_Schema.class.php");
/**
@@ -47,4 +39,4 @@ if (!file_exists('./libraries/schema/' . $path . '_Relation_Schema.class.php'))
PMA_Export_Relation_Schema::dieSchema($_POST['chpage'],$export_type,__('File doesn\'t exist'));
}
include("./libraries/schema/".$path."_Relation_Schema.class.php");
-$obj_schema = eval("new PMA_".$path."_Relation_Schema();"); \ No newline at end of file
+$obj_schema = eval("new PMA_".$path."_Relation_Schema();");