From e7f26e9a398e43ac4f46d87b611b21d2a79a25ad Mon Sep 17 00:00:00 2001 From: Olusesan Ameye Date: Mon, 14 Feb 2022 19:33:58 -0500 Subject: [PATCH] fix --- www/application/controllers/Password_recovery.php | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/www/application/controllers/Password_recovery.php b/www/application/controllers/Password_recovery.php index 9c4dcd90..1af8d9d2 100644 --- a/www/application/controllers/Password_recovery.php +++ b/www/application/controllers/Password_recovery.php @@ -5,22 +5,16 @@ defined('BASEPATH') OR exit('No direct script access allowed'); class Password_recovery extends CI_Controller { public function index() { - //echo "ameye kvkgkg"; $data['action_message'] = ""; - - if ($_POST) { - $data['email'] = $this->input->post('email'); if ($data['email'] == '') { $out['error'] = 'Please specify valid emal to continue'; $data['action_message'] = "
" . $out['error'] . "
"; } else { - //WRENCHBOARD_ACCOUNT_RESETPASS - $this->resetMemberPass($data['email']); - - $out['error'] = "If we find your email, you will receive a link to reset your password. Please use or contact form if you did not get our message after few minutes. "; + $out['error'] = "  If we find your email, you will receive a link to reset your password. Please use or contact form if you did not get our message after few minutes. "; $data['action_message'] = "
" . $out['error'] . "
"; } }