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
https://forums.phpfreaks.com/topic/11528-problems-with-class-functions/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.