|
Try this in nuke.php in logout function
setcookie( "{$Globals['cookieprefix']}user", "", time()-3600, $Globals['cookie_path'], $Globals['domain_path'] );
change to this
setcookie( "user", "", time()-3600, $Globals['cookie_path'], $Globals['domain_path'] );
|