Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 351)
+++ trunk/CHANGELOG	(revision 352)
@@ -11,11 +11,14 @@
 ! = Update/Change
 
 ------------------------------------- 2.6.4 -------------------------------------
+19-May-2006 Ryan Djurovich
+#	Fixed problem in forgotten login form where email field is too short (#207)
+#	Fixed typo in forgotten login details email (#190)
 03-May-2006 Stefan Braunewell
 #	Fixed problems with pre-2.6.0 modules in section list
 #	Fixed e-mail bug caused by From: headers in internal mail function calls
 	(#189)
-#	E-mail validation  in install script now accepts new top-level domains
+#	E-mail validation in install script now accepts new top-level domains
 	(#162)
 #	Error status is now overwritten by next database query (#182)
 #	Fixed obscure problem in htmlarea install script
Index: trunk/wb/admin/login/forgot/index.php
===================================================================
--- trunk/wb/admin/login/forgot/index.php	(revision 351)
+++ trunk/wb/admin/login/forgot/index.php	(revision 352)
@@ -94,7 +94,7 @@
 	Your password has been reset to the one above.
 	This means that your old password will no longer work.
 	
-	If you have received this message in error, please delete it immediatly.';
+	If you have received this message in error, please delete it immediately.';
 				// Try sending the email
 				if($admin->mail(SERVER_EMAIL,$mail_to,$mail_subject,$mail_message)) { 
 					$message = $MESSAGE['FORGOT_PASS']['PASSWORD_RESET'];
Index: trunk/wb/admin/login/forgot/template.html
===================================================================
--- trunk/wb/admin/login/forgot/template.html	(revision 351)
+++ trunk/wb/admin/login/forgot/template.html	(revision 352)
@@ -36,7 +36,7 @@
 		</tr>
 		<tr style="display: {DISPLAY_FORM}">
 			<td width="165" height="30" align="right">{TEXT_EMAIL}:</td>
-			<td><input type="text" maxlength="30" name="email" value="{EMAIL}" style="width: 180px;" /></td>
+			<td><input type="text" maxlength="255" name="email" value="{EMAIL}" style="width: 180px;" /></td>
 		</tr>
 		<tr style="display: {DISPLAY_FORM}" height="30">
 			<td>&nbsp;</td>
Index: trunk/wb/account/forgot_form.php
===================================================================
--- trunk/wb/account/forgot_form.php	(revision 351)
+++ trunk/wb/account/forgot_form.php	(revision 352)
@@ -87,7 +87,7 @@
 Your password has been reset to the one above.
 This means that your old password will no longer work.
 
-If you have received this message in error, please delete it immediatly.';
+If you have received this message in error, please delete it immediately.';
 				// Try sending the email
 				if($wb->mail(SERVER_EMAIL,$mail_to,$mail_subject,$mail_message)) { 
 					$message = $MESSAGE['FORGOT_PASS']['PASSWORD_RESET'];
@@ -133,7 +133,7 @@
 		</tr>
 		<tr>
 			<td width="165" height="30" align="right"><?php echo $TEXT['EMAIL']; ?>:</td>
-			<td><input type="text" maxlength="30" name="email" value="<?php echo $email; ?>" style="width: 180px;" /></td>
+			<td><input type="text" maxlength="255" name="email" value="<?php echo $email; ?>" style="width: 180px;" /></td>
 		</tr>
 		<tr height="30">
 			<td>&nbsp;</td>
