I am messing about with KO3 and the auth module, I have logins working quite well, but I have noticed that every time I refresh the page the login count for my user increments.
I am pretty sure it is coming from this section.
// Check if logged in
if ($this->auth->logged_in())
{
// Pass user to view
$this->view->user = $this->auth->get_user(); // Here?
}
else
{
// Attempt auto login
$this->auth->auto_login();
// Check if logged in
if ($this->auth->logged_in())
{
// Pass user to view
$this->view->user = $this->auth->get_user();
}
}
Now I am pretty sure it is the line where I pass the users object to the view. The line commented with // Here?.
I just wondered why this would increment the logins. I have checked out the source and all it is doing is reading the session variables.
EDIT
I thought I had this fixed after I had it explained to me. Apparently not. I am not pretty sure it is down to sessions, I have tried using the cookie and session classes from the GitHub repo but that made no difference.
I am not sure where to begin debugging this.
auto_login()call. – biakaveron May 15 '11 at 6:08logged_incallsauto_loginthus logging in on every page view. – Olical May 15 '11 at 21:10