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:
authorJo Michael <me@mynetx.net>2012-03-17 02:04:12 +0400
committerJo Michael <me@mynetx.net>2012-03-17 02:04:12 +0400
commit3b56f6a53b1cb74319fe58308907371ea93f725d (patch)
treecfa258378f13db3e794c1fb6ecb6f7c3e6409136 /schema_export.php
parentaf0e6c71e72cc3bbcd9c8d35c64836e4e3b07b1e (diff)
Leading ./ paths for links and favicons can be omitted, part 1
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 1430e57378..31a1264813 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';
-require_once "./libraries/schema/Export_Relation_Schema.class.php";
+require_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'));
}
-require "./libraries/schema/".$path."_Relation_Schema.class.php";
+require "libraries/schema/".$path."_Relation_Schema.class.php";
$obj_schema = eval("new PMA_".$path."_Relation_Schema();");