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:
Diffstat (limited to 'tbl_chart.php')
-rw-r--r--tbl_chart.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/tbl_chart.php b/tbl_chart.php
index 56fce06287..b4a290b8d1 100644
--- a/tbl_chart.php
+++ b/tbl_chart.php
@@ -17,7 +17,7 @@ if (! defined('PMA_NO_VARIABLES_IMPORT')) {
/**
*
*/
-require_once './libraries/common.inc.php';
+require_once 'libraries/common.inc.php';
$GLOBALS['js_include'][] = 'tbl_chart.js';
$GLOBALS['js_include'][] = 'highcharts/highcharts.js';
@@ -35,19 +35,19 @@ $GLOBALS['js_include'][] = 'canvg/canvg.js';
if (strlen($GLOBALS['table'])) {
$url_params['goto'] = $cfg['DefaultTabTable'];
$url_params['back'] = 'tbl_sql.php';
- include './libraries/tbl_common.php';
- include './libraries/tbl_info.inc.php';
- include './libraries/tbl_links.inc.php';
+ include 'libraries/tbl_common.php';
+ include 'libraries/tbl_info.inc.php';
+ include 'libraries/tbl_links.inc.php';
} elseif (strlen($GLOBALS['db'])) {
$url_params['goto'] = $cfg['DefaultTabDatabase'];
$url_params['back'] = 'sql.php';
- include './libraries/db_common.inc.php';
- include './libraries/db_info.inc.php';
+ include 'libraries/db_common.inc.php';
+ include 'libraries/db_info.inc.php';
} else {
$url_params['goto'] = $cfg['DefaultTabServer'];
$url_params['back'] = 'sql.php';
- include './libraries/server_common.inc.php';
- include './libraries/server_links.inc.php';
+ include 'libraries/server_common.inc.php';
+ include 'libraries/server_links.inc.php';
}
/*
@@ -168,6 +168,6 @@ unset($sanitized_data);
/**
* Displays the footer
*/
-require_once './libraries/footer.inc.php';
+require_once 'libraries/footer.inc.php';
?>