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:
authorDieter Adriaenssens <ruleant@users.sourceforge.net>2011-08-22 01:36:10 +0400
committerDieter Adriaenssens <ruleant@users.sourceforge.net>2011-08-22 01:36:10 +0400
commite82d3c7136425fbe51ed26f8bf95cf932740ddd8 (patch)
treea20e8e653ba4f400583647b3cd16547b20f1645c /schema_export.php
parent0c6dbb530d4d1b594a72c1f99bf384a46d6f7c92 (diff)
require/include are statements not functions; no parentheses are required
Diffstat (limited to 'schema_export.php')
-rw-r--r--schema_export.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/schema_export.php b/schema_export.php
index 2abe91f9e6..30384e861e 100644
--- a/schema_export.php
+++ b/schema_export.php
@@ -21,7 +21,7 @@ $cfgRelation = PMA_getRelationsParam();
require_once './libraries/transformations.lib.php';
require_once './libraries/Index.class.php';
-include_once("./libraries/schema/Export_Relation_Schema.class.php");
+include_once "./libraries/schema/Export_Relation_Schema.class.php";
/**
* get all the export options and verify
@@ -38,5 +38,5 @@ $path = PMA_securePath(ucfirst($export_type));
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");
+include "./libraries/schema/".$path."_Relation_Schema.class.php";
$obj_schema = eval("new PMA_".$path."_Relation_Schema();");