Better formatting for SHA256 password hashing

Signed-off-by: Michal Čihař <michal@cihar.com>
This commit is contained in:
Michal Čihař 2015-08-03 11:12:04 +02:00
parent d71eae0969
commit e83457dd14
2 changed files with 3 additions and 2 deletions

View File

@ -106,7 +106,8 @@ function PMA_getHtmlForChangePassword($username, $hostname)
$html .= '" checked="checked"';
}
$html .= ' />'
. '<label for="radio_pw_hash_sha256">' . 'sha256_password'
. '<label for="radio_pw_hash_sha256">'
. __('SHA256 password')
. '</label>'
. '</td>'
. '</tr>';

View File

@ -1706,7 +1706,7 @@ function PMA_getHtmlForLoginInformationFields(
) {
$html_output .= '<option value="sha256_password" '
. ($orig_auth_plugin == 'sha256_password' ? ' selected ' : '')
. ' >' . __('sha256_password') . '</option>';
. ' >' . __('SHA256 password') . '</option>';
}
$html_output .= '</select>'