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 /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 'export.php')
-rw-r--r--export.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/export.php b/export.php
index e9e82a9938..6001c4c753 100644
--- a/export.php
+++ b/export.php
@@ -373,7 +373,7 @@ if ($save_on_server) {
if ($export_type == 'database') {
$num_tables = count($tables);
if ($num_tables == 0) {
- $message = PMA\libraries\Message::error(
+ $message = PhpMyAdmin\Message::error(
__('No tables found in database.')
);
$active_page = 'db_export.php';