Revision 352
Added by ryan over 19 years ago
| trunk/CHANGELOG | ||
|---|---|---|
| 11 | 11 |
! = Update/Change |
| 12 | 12 |
|
| 13 | 13 |
------------------------------------- 2.6.4 ------------------------------------- |
| 14 |
19-May-2006 Ryan Djurovich |
|
| 15 |
# Fixed problem in forgotten login form where email field is too short (#207) |
|
| 16 |
# Fixed typo in forgotten login details email (#190) |
|
| 14 | 17 |
03-May-2006 Stefan Braunewell |
| 15 | 18 |
# Fixed problems with pre-2.6.0 modules in section list |
| 16 | 19 |
# Fixed e-mail bug caused by From: headers in internal mail function calls |
| 17 | 20 |
(#189) |
| 18 |
# E-mail validation in install script now accepts new top-level domains
|
|
| 21 |
# E-mail validation in install script now accepts new top-level domains |
|
| 19 | 22 |
(#162) |
| 20 | 23 |
# Error status is now overwritten by next database query (#182) |
| 21 | 24 |
# Fixed obscure problem in htmlarea install script |
| trunk/wb/admin/login/forgot/index.php | ||
|---|---|---|
| 94 | 94 |
Your password has been reset to the one above. |
| 95 | 95 |
This means that your old password will no longer work. |
| 96 | 96 |
|
| 97 |
If you have received this message in error, please delete it immediatly.'; |
|
| 97 |
If you have received this message in error, please delete it immediately.';
|
|
| 98 | 98 |
// Try sending the email |
| 99 | 99 |
if($admin->mail(SERVER_EMAIL,$mail_to,$mail_subject,$mail_message)) {
|
| 100 | 100 |
$message = $MESSAGE['FORGOT_PASS']['PASSWORD_RESET']; |
| trunk/wb/admin/login/forgot/template.html | ||
|---|---|---|
| 36 | 36 |
</tr> |
| 37 | 37 |
<tr style="display: {DISPLAY_FORM}">
|
| 38 | 38 |
<td width="165" height="30" align="right">{TEXT_EMAIL}:</td>
|
| 39 |
<td><input type="text" maxlength="30" name="email" value="{EMAIL}" style="width: 180px;" /></td>
|
|
| 39 |
<td><input type="text" maxlength="255" name="email" value="{EMAIL}" style="width: 180px;" /></td>
|
|
| 40 | 40 |
</tr> |
| 41 | 41 |
<tr style="display: {DISPLAY_FORM}" height="30">
|
| 42 | 42 |
<td> </td> |
| trunk/wb/account/forgot_form.php | ||
|---|---|---|
| 87 | 87 |
Your password has been reset to the one above. |
| 88 | 88 |
This means that your old password will no longer work. |
| 89 | 89 |
|
| 90 |
If you have received this message in error, please delete it immediatly.'; |
|
| 90 |
If you have received this message in error, please delete it immediately.';
|
|
| 91 | 91 |
// Try sending the email |
| 92 | 92 |
if($wb->mail(SERVER_EMAIL,$mail_to,$mail_subject,$mail_message)) {
|
| 93 | 93 |
$message = $MESSAGE['FORGOT_PASS']['PASSWORD_RESET']; |
| ... | ... | |
| 133 | 133 |
</tr> |
| 134 | 134 |
<tr> |
| 135 | 135 |
<td width="165" height="30" align="right"><?php echo $TEXT['EMAIL']; ?>:</td> |
| 136 |
<td><input type="text" maxlength="30" name="email" value="<?php echo $email; ?>" style="width: 180px;" /></td>
|
|
| 136 |
<td><input type="text" maxlength="255" name="email" value="<?php echo $email; ?>" style="width: 180px;" /></td>
|
|
| 137 | 137 |
</tr> |
| 138 | 138 |
<tr height="30"> |
| 139 | 139 |
<td> </td> |
Also available in: Unified diff
Fixed tickets 190 and 207