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 /index.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 'index.php')
-rw-r--r--index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.php b/index.php
index 02cb9d28fe..dced4c2c5e 100644
--- a/index.php
+++ b/index.php
@@ -9,7 +9,7 @@
use PhpMyAdmin\Charsets;
use PhpMyAdmin\Core;
use PhpMyAdmin\LanguageManager;
-use PMA\libraries\Message;
+use PhpMyAdmin\Message;
use PMA\libraries\RecentFavoriteTable;
use PMA\libraries\Response;
use PMA\libraries\Sanitize;
@@ -572,7 +572,7 @@ if ($server > 0) {
. 'to set it up there.'
);
}
- $msg = PMA\libraries\Message::notice($msg_text);
+ $msg = PhpMyAdmin\Message::notice($msg_text);
$msg->addParamHtml('<a href="./chk_rel.php' . $common_url_query . '">');
$msg->addParamHtml('</a>');
/* Show error if user has configured something, notice elsewhere */