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:
authorMaurício Meneghini Fauth <mauriciofauth@gmail.com>2017-08-23 02:47:28 +0300
committerMaurício Meneghini Fauth <mauriciofauth@gmail.com>2017-08-23 02:51:27 +0300
commite2c83b954b9aa58d3ada9ff0c857af0115618cdf (patch)
tree08c59269958f74021c6ed7d94dccece04d61c6c3 /tbl_export.php
parent8256945ec2f79155f8dae765118efe1201d1436c (diff)
Refactor relation functions to static methods
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'tbl_export.php')
-rw-r--r--tbl_export.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tbl_export.php b/tbl_export.php
index 7b5e31d449..ee22273070 100644
--- a/tbl_export.php
+++ b/tbl_export.php
@@ -6,6 +6,7 @@
* @package PhpMyAdmin
*/
use PhpMyAdmin\Config\PageSettings;
+use PhpMyAdmin\Relation;
use PhpMyAdmin\Response;
/**
@@ -24,7 +25,7 @@ $scripts = $header->getScripts();
$scripts->addFile('export.js');
// Get the relation settings
-$cfgRelation = PMA_getRelationsParam();
+$cfgRelation = Relation::getRelationsParam();
// handling export template actions
if (isset($_REQUEST['templateAction']) && $cfgRelation['exporttemplateswork']) {