robos99 Posted June 8, 2006 Share Posted June 8, 2006 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 130I 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(){ //130if((isset($_SESSION['passhash'])) OR (isset($_COOKIE['passhash']))){ $this->clear_cookie(); $this->clear_session(); } }[/code](edit: nevermind, i seem to have fixed the problem myself) Quote Link to comment https://forums.phpfreaks.com/topic/11528-problems-with-class-functions/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.