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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2015-10-27 00:12:53 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-10-27 00:12:53 +0300
commit4d4cb9a5c255020afc67eb4e012fa02de349ba03 (patch)
treef5b1e8fe41e722e57369faae13ad8860699ef4f8 /server_privileges.php
parentb78f215ad5ef69b41e3a8a8b8203bc6d669d345f (diff)
parentdc5e057fe2e11e0b599eaf9dfbe48342abd61cb3 (diff)
Merge branch 'QA_4_5'
Conflicts: server_privileges.php
Diffstat (limited to 'server_privileges.php')
-rw-r--r--server_privileges.php9
1 files changed, 7 insertions, 2 deletions
diff --git a/server_privileges.php b/server_privileges.php
index 47e4c5a665..b66c2a329c 100644
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -140,8 +140,13 @@ if (isset($_REQUEST['change_copy']) && $username == $_REQUEST['old_username']
&& $hostname == $_REQUEST['old_hostname']
) {
$response->addHTML(
- PMA\libraries\Message::error(__('Username and hostname didn\'t change.'))
- ->getDisplay()
+ PMA\libraries\Message::error(
+ __(
+ "Username and hostname didn't change. "
+ . "If you only want to change the password, "
+ . "'Change password' tab should be used."
+ )
+ )->getDisplay()
);
$response->setRequestStatus(false);
exit;