This patch file updates files since 02/27/06.  Just replace the files with the ones in this .zip.  Do NOT run install.php or upgrade.php again.

04/27/06 - Manual instructions

- There are a few slight changes in en.php for _NEWPWDMSG and _SIGNUPMESSAGE
- In user.php switch out the lostpassword function.  
- In user.php in the editbio function add:
			include("includes/emailer.php");
  after:
	if($_POST['submit'])
		{
  then find:
						$mailtext = _SIGNUPMESSAGE._LOGIN.": $penname\n"._PASSWORD.": $pass \n\n";
						if(!$pwdsetting) $mailtext .= _SIGNUPWARNING;
						$headers .= "From: $siteemail<$siteemail>\n";
						$headers .= "X-Sender: <$siteemail>\n";
						$headers .= "X-Mailer: PHP\n"; //mailer
						$headers .= "X-Priority: 3\n"; //1 UrgentMessage, 3 Normal
						$headers .= "Return-Path: <$siteemail>\n";
						$headers .= "Content-type: text/html; charset="._CHARSET."\r\n";

						mail($_POST['email'], $subject, $mailtext, $headers);

  replace with:
						$mailtext = _SIGNUPMESSAGE._LOGIN.": $penname<br />"._PASSWORD.": $pass <br /><br />";
						if(!$pwdsetting) $mailtext .= _SIGNUPWARNING;
						sendemail($penname, $_POST['email'], $sitename, $siteemail, $subject, $mailtext, "html");
- Also in user.php replace line 436 with the line below to add the red astericks for required fields in the password inputs.
		 	$output .= "<tr><td colspan=\"2\">"._PASSWORD.": ".($_GET['action'] == "newaccount" ? "<font color=\"red\">*</font>" : "")." <INPUT name=\"password\" class=\"textbox\" value=\"\" type=\"password\"> <INPUT name=\"password2\" class=\"textbox=\" value=\"\" type=\"password\"></td></tr>";
- Again user.php replace line 442-444.  This will fix the no value not being checked and adds a span around the yes and no options so they stay together on the same line.
				$output .= "<tr><td colspan=\"2\">"._AGECONSENT."<span style='white-space: nowrap;'>
					<input type=\"radio\" class=\"radio\" value=\"1\" name=\"ageconsent\" ".($user['ageconsent'] ? " checked" : "")."> "._YES."
					<input type=\"radio\" class=\"radio\" value=\"0\" ".($user['ageconsent'] == 0? " checked" : "")." name=\"ageconsent\"> "._NO."</span></td></tr>";
- I included the changes, but forgot to include the file for contact.php in the last update. So here it is again:
	Replace everything from "if($_POST['submit'])" to "else" in contact.php





