Fixed the error message of the password recovery

Former-commit-id: 3bc9b4044bbe56ec5a1c1f4cbdb3f56db5680abb
This commit is contained in:
Alejandro Gallardo Escobar 2019-02-12 17:45:25 +01:00
parent 4f158ed61b
commit df8042abb1
2 changed files with 42 additions and 54 deletions

View File

@ -342,7 +342,7 @@ echo '</div>';
echo '<div id="ver_num">'.$pandora_version.(($develop_bypass == 1) ? ' '.__('Build').' '.$build_version : '').'</div>';
echo '</div>';
if (!isset($process_error_message) && isset($mail)) {
if (empty($process_error_message) && isset($mail)) {
echo '<div id="reset_correct" title="'.__('Password reset').'">';
echo '<div class="content_alert">';
echo '<div class="icon_message_alert">';
@ -359,7 +359,7 @@ if (!isset($process_error_message) && isset($mail)) {
echo '</div>';
echo '</div>';
echo '</div>';
} else if (isset($process_error_message)) {
} else if (isset($process_error_message) && !empty($process_error_message)) {
echo '<div id="reset_correct" title="'.__('Password reset').'">';
echo '<div class="content_alert">';
echo '<div class="icon_message_alert">';

View File

@ -619,10 +619,9 @@ if (! isset($config['id_user'])) {
header('Location: '.$config['homeurl'].'index.php'.$redirect_url);
exit;
// Always exit after sending location headers
}
// Always exit after sending location headers.
} else if (isset($_GET['loginhash'])) {
// Hash login process
else if (isset($_GET['loginhash'])) {
$loginhash_data = get_parameter('loginhash_data', '');
$loginhash_user = str_rot13(get_parameter('loginhash_user', ''));
@ -638,9 +637,8 @@ if (! isset($config['id_user'])) {
exit('</html>');
}
}
// There is no user connected
else {
} else {
// There is no user connected.
if ($config['enterprise_installed']) {
enterprise_include_once('include/functions_reset_pass.php');
}
@ -722,7 +720,6 @@ if (! isset($config['id_user'])) {
$show_error = false;
if (!$first) {
if ($reset) {
if ($user_reset_pass == '') {
$reset = false;
$error = __('Id user cannot be empty');
@ -748,16 +745,10 @@ if (! isset($config['id_user'])) {
}
}
}
}
if (!$reset) {
if ($config['enterprise_installed']) {
include_once 'enterprise/include/reset_pass.php';
}
} else {
$cod_hash = $user_reset_pass.'::::'.md5(rand(10, 1000000).rand(10, 1000000).rand(10, 1000000));
$subject = '['.get_product_name().'] '.__('Reset password');
$subject = '['.io_safe_output(get_product_name()).'] '.__('Reset password');
$body = __('This is an automatically sent message for user ');
$body .= ' "<strong>'.$user_reset_pass.'"</strong>';
$body .= '<p />';
@ -771,7 +762,6 @@ if (! isset($config['id_user'])) {
$result = send_email_to_user($mail, $body, $subject);
$process_error_message = '';
if (!$result) {
$process_error_message = __('Error at sending the email');
} else {
@ -779,7 +769,6 @@ if (! isset($config['id_user'])) {
}
include_once 'general/login_page.php';
}
} else {
include_once 'enterprise/include/reset_pass.php';
}
@ -1363,4 +1352,3 @@ require 'include/php_to_js_values.php';
if (__PAN_XHPROF__ === 1) {
pandora_xhprof_display_result('node_index');
}