From 7ae6801002fbaf07448ffed399784f9ecabdf1a5 Mon Sep 17 00:00:00 2001 From: Chris Hopkins Date: Thu, 7 Nov 2013 17:06:16 +0000 Subject: [PATCH] Corrected demo_auth_model comment I was scratching my head trying to figure this out as I read the comment as redirects if valid login. Silly me :) --- demo_files/application/models/demo_auth_model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo_files/application/models/demo_auth_model.php b/demo_files/application/models/demo_auth_model.php index 9a76809..2913dad 100644 --- a/demo_files/application/models/demo_auth_model.php +++ b/demo_files/application/models/demo_auth_model.php @@ -66,7 +66,7 @@ function login() // Save any public status or error messages (Whilst suppressing any admin messages) to CI's flash session data. $this->session->set_flashdata('message', $this->flexi_auth->get_messages()); - // Reload page, if login was successful, sessions will have been created that will then further redirect verified users. + // Reload page. If login was successful, sessions will have been created that will then further redirect verified users. redirect('auth'); } else