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 /server_replication.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 'server_replication.php')
-rw-r--r--server_replication.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/server_replication.php b/server_replication.php
index 802506eb59..8c33327ddc 100644
--- a/server_replication.php
+++ b/server_replication.php
@@ -31,7 +31,7 @@ $scripts->addFile('vendor/zxcvbn.js');
*/
if (! $is_superuser) {
$html = PMA_getHtmlForSubPageHeader('replication');
- $html .= PMA\libraries\Message::error(__('No Privileges'))->getDisplay();
+ $html .= PhpMyAdmin\Message::error(__('No Privileges'))->getDisplay();
$response->addHTML($html);
exit;
}