= 5 && PMA_USR_BROWSER_VER < 7) ? 'onpropertychange' : 'onchange'; $is_privileges = basename($_SERVER['SCRIPT_NAME']) === 'server_privileges.php'; $html = '
'; $html .= PMA_URL_getHiddenInputs(); if (strpos($GLOBALS['PMA_PHP_SELF'], 'server_privileges') !== false) { $html .= '' . ''; } $html .= '
' . '' . __('Change password') . '' . '' . '' . '' . '' . '' . '' . '' . ''; $default_auth_plugin = PMA_getCurrentAuthenticationPlugin( 'change', $username, $hostname ); // See http://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-5.html if (PMA_Util::getServerType() == 'MySQL' && PMA_MYSQL_INT_VERSION >= 50705 ) { $html .= '' . '' . '' . '' . '' . '' . '' . ''; } elseif (PMA_Util::getServerType() == 'MySQL' && PMA_MYSQL_INT_VERSION >= 50606 ) { $html .= '' . '' . '' . ''; } else { $html .= '' . '' . '' . '' . '' . '' . '' . ''; } $html .= '
' . '' . '' . '
' . '' . '' . '' . '' . '  ' . __('Re-type:') . ' ' . '' . '
' . __('Password Hashing:') . '' . '' . __('MySQL native password') . '' . '
 ' . '' . __('SHA256 password') . '' . '
' . __('Password Hashing:') . '' . '' . '' . '
' . __('Password Hashing:') . '' . '' . '' . '
 ' . '' . '' . '
'; $html .= '
' . PMA_Message::notice( __( 'This method requires using an \'SSL connection\' ' . 'or an \'unencrypted connection that encrypts the password ' . 'using RSA\'; while connecting to the server.' ) . PMA_Util::showMySQLDocu('sha256-authentication-plugin') ) ->getDisplay() . '
'; $html .= '
' . '' . '
'; return $html; }