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-06-30 18:15:06 +0300
committerMaurício Meneghini Fauth <mauriciofauth@gmail.com>2017-06-30 19:30:04 +0300
commit54a15dbd9cf37ba41a2d1d256e0d36c8b9d7082d (patch)
treea38d67be5ffd4c24bc13b026f7186854390a7c3a /db_export.php
parentaf84c6a4b492c0a49667743277d3846ff4a0324e (diff)
Move classes to PhpMyAdmin namespace
- Move Logging to PhpMyAdmin namespace - Move Menu to PhpMyAdmin namespace - Move Message to PhpMyAdmin namespace Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'db_export.php')
-rw-r--r--db_export.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_export.php b/db_export.php
index 5eb9deeafb..1235dcca5b 100644
--- a/db_export.php
+++ b/db_export.php
@@ -48,7 +48,7 @@ $export_page_title = __('View dump (schema) of database');
// exit if no tables in db found
if ($num_tables < 1) {
- PMA\libraries\Message::error(__('No tables found in database.'))->display();
+ PhpMyAdmin\Message::error(__('No tables found in database.'))->display();
exit;
} // end if