From c4966a03e9fb7c200d188ec72cea4538d1897ea9 Mon Sep 17 00:00:00 2001 From: Ramon Ferreira Silva Date: Tue, 26 Feb 2019 21:27:45 -0300 Subject: [PATCH] Removendo criptografia do Login de usuario MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Com essa alteração você poderá colocar a senha diretamente no banco sem precisar usar a função de hash --- application/helpers/autentica_helper.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/application/helpers/autentica_helper.php b/application/helpers/autentica_helper.php index 3b3f970..d94ebdd 100644 --- a/application/helpers/autentica_helper.php +++ b/application/helpers/autentica_helper.php @@ -16,10 +16,14 @@ function iniciar_sessao($email, $senha){ $ci->load->model("Usuario"); $usuario = $query->row(0, "Usuario"); - if($ci->encrypt->decode($usuario->senha) != $senha){ + /*if($ci->encrypt->decode($usuario->senha) != $senha){ return false; - } + }*/ + if($usuario->senha != $senha){ + return false; + } + date_default_timezone_set('America/Sao_Paulo'); $ci->db->where("id", $usuario->id); $ci->db->update("usuario", array("data_ultimo_login" => date("Y-m-d H:i:s"))); @@ -57,4 +61,4 @@ function encerrar_sessao(){ } -?> \ No newline at end of file +?>