diff options
author | rub <rub@piwigo.org> | 2006-08-11 22:42:29 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2006-08-11 22:42:29 +0000 |
commit | fdf392c07d7d016eb3a8b3a4e3f6b61e24fca0f2 (patch) | |
tree | efcb7027c5dab7ad0f1efd9b8d97253b285e38b5 | |
parent | 33c34a9900abc3e93bf816b850d72713987da868 (diff) |
Remove duplicate line!
$headers.= 'Reply-To: '.$from."\n";
Resolved Issue ID 0000516:
o Charset not defined on mail headers (Content-Type)
o Add too others important Content-Type informations
git-svn-id: http://piwigo.org/svn/trunk@1534 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/functions_mail.inc.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/functions_mail.inc.php b/include/functions_mail.inc.php index 466cf921c..7b6ca4593 100644 --- a/include/functions_mail.inc.php +++ b/include/functions_mail.inc.php @@ -126,7 +126,6 @@ function pwg_mail($to, $from = '', $subject = 'PhpWebGallery', $infos = '') $headers = 'From: '.$from."\n"; $headers.= 'Reply-To: '.$from."\n"; - $headers.= 'Reply-To: '.$from."\n"; $headers.= 'Content-Type: text/plain;format=flowed;charset="'.$lang_info['charset'].'";'; $headers.= 'reply-type=original'."\n"; |