Jump to content

problems with class functions


robos99

Recommended Posts

So I keep getting the following error:

Fatal error: Cannot redeclare logout() (previously declared in /admin/classes/user_auth_class.php:132) in /admin/classes/user_auth_class.php on line 130

I have no idea why this is happening. I've checked line 130, which is where I first declared the logout function. There's nothing abnormal there. I've gone over the entire script, (just for that class) and logout isn't declared twice. And the error message only occurs on the script that calls the logout function. I think the logout function itself is working...but I haven't looked that far yet.

Here's line 130 if it helps at all. For security reasons I'd rather not post the entire script.

[code]function logout(){   //130

if((isset($_SESSION['passhash'])) OR (isset($_COOKIE['passhash']))){

   $this->clear_cookie();
   $this->clear_session();

  }  

}[/code]


(edit: nevermind, i seem to have fixed the problem myself)
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.