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>2018-01-14 04:51:16 +0300
committerMaurício Meneghini Fauth <mauriciofauth@gmail.com>2018-01-14 04:51:16 +0300
commitf45d4a566beb58f19d3754651d863c3e1e769b86 (patch)
tree9507e7009b613bdffa0f9ff0f7f10eeeee571ef9 /db_export.php
parentf40ce94a96dfa861e6489340510e0072601f50fd (diff)
Refactor PhpMyAdmin\Display\Export class
The static methods are replaced with instance methods. Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'db_export.php')
-rw-r--r--db_export.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/db_export.php b/db_export.php
index e43f914cc9..b04a8b0193 100644
--- a/db_export.php
+++ b/db_export.php
@@ -150,8 +150,9 @@ if (! isset($multi_values)) {
$multi_values = '';
}
$response = Response::getInstance();
+$displayExport = new DisplayExport();
$response->addHTML(
- DisplayExport::getExportDisplay(
+ $displayExport->getDisplay(
'database', $db, $table, $sql_query, $num_tables,
$unlim_num_rows, $multi_values
)