Just replace the files with the ones in this .zip.  
Do NOT run install.php or upgrade.php again.

08/24/06 - Manual instructions

- in header.php add the following lines at line 39:

$output = "";
if(ini_get('register_globals')) {
	foreach($_SESSION as $k => $v) {
		unset($GLOBALS[$k]);
	}
}

- In challenges.php replace the respond( ) function.  (Sorry can't be more specific than that.)
- Also in challenges.php replace the security check section at the top. 
- In user.php everywhere above the main function change $output to $loginoutput. 
- In header.php goto line 92 which is:
	if($userdata['level']) $_SESSION['adminloggedin'] = 1;
Add directly below it:
	else $_SESSION['adminloggedin'] = 0;

