[eluser]stef25[/eluser]
What is in models\entry_model.php line 190 ?
Also, I'm not sure if $is_logged_in != true is correct. Try $is_logged_in == FALSE or $is_logged_in !== TRUE
EDIT: Actually, your $this->load->view('includes/template', $data); should be in an else statement, so you can't get the redirect AND the load->view together. Even though you redirect, the code keeps running and tries to load a view. Maybe ... not sure.