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:
Diffstat (limited to 'user_password.php')
-rw-r--r--user_password.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/user_password.php b/user_password.php
index 5cd725cd4e..413bea3e9d 100644
--- a/user_password.php
+++ b/user_password.php
@@ -6,6 +6,8 @@
*
* @package PhpMyAdmin
*/
+
+use PMA\libraries\Core;
use PMA\libraries\URL;
use PMA\libraries\Response;
@@ -203,7 +205,7 @@ function PMA_changePassword($password, $message, $change_password_message)
*/
function PMA_changePassHashingFunction()
{
- if (PMA_isValid(
+ if (Core::isValid(
$_REQUEST['authentication_plugin'], 'identical', 'mysql_old_password'
)) {
$hashing_function = 'OLD_PASSWORD';