Changeset 1530 for branches/branch-1_6/password.php
- Timestamp:
- Aug 10, 2006, 12:05:29 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/branch-1_6/password.php
r1082 r1530 43 43 if (isset($_POST['submit'])) 44 44 { 45 // in case of error, creation of mailto link46 $query = '47 SELECT '.$conf['user_fields']['email'].'48 FROM '.USERS_TABLE.'49 WHERE '.$conf['user_fields']['id'].' = '.$conf['webmaster_id'].'50 ;';51 list($mail_webmaster) = mysql_fetch_array(pwg_query($query));52 53 45 $mailto = 54 '<a href="mailto:'. $mail_webmaster.'">'46 '<a href="mailto:'.get_webmaster_mail_address().'">' 55 47 .l10n('Contact webmaster') 56 48 .'</a>' … … 93 85 ; 94 86 95 if (pwg_mail($row['email'], $mail_webmaster, l10n('password updated'), $infos))87 if (pwg_mail($row['email'], '', l10n('password updated'), $infos)) 96 88 { 97 89 $data =
Note: See TracChangeset
for help on using the changeset viewer.