'issuefixed'

This commit is contained in:
gandhimathi Bharathirajan 2017-07-03 13:02:16 +05:30
parent 87a5cf68e2
commit fc1ec4b5d9

View File

@ -36,6 +36,7 @@ class Login extends CI_Controller
if(!isset($isLoggedIn) || $isLoggedIn != TRUE)
{
$this->load->view('login');
}
else
{
@ -102,9 +103,9 @@ class Login extends CI_Controller
}
else
{
$this->session->set_flashdata('error', 'Email or password mismatch');
redirect('login');
$this->session->set_flashdata('error', 'Email or password mismatch');
}
}
}