diff options
author | Christian Weber | 2012-10-31 00:38:07 +0000 |
---|---|---|
committer | Christian Weber | 2012-10-31 00:38:07 +0000 |
commit | 1dccb8ce3b85438401de8a43a18bfb3c7a0a3576 (patch) | |
tree | a5ee0525a7dcf4ad3977c1756964bf95b8bff675 /it_mail.class | |
parent | 3096e29943f18335b895f64c98c234ef7352ea71 (diff) | |
download | itools-1dccb8ce3b85438401de8a43a18bfb3c7a0a3576.tar.gz itools-1dccb8ce3b85438401de8a43a18bfb3c7a0a3576.tar.bz2 itools-1dccb8ce3b85438401de8a43a18bfb3c7a0a3576.zip |
fix Reply-To header encoding
Diffstat (limited to 'it_mail.class')
-rw-r--r-- | it_mail.class | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it_mail.class b/it_mail.class index 5045a44..24caf00 100644 --- a/it_mail.class +++ b/it_mail.class @@ -110,7 +110,7 @@ function add_header($header, $value) /* FALLTHROUGH */ default: $this->header_names[] = $header; - $this->header_values[] = $this->header_escape($value, $header == 'From'); + $this->header_values[] = $this->header_escape($value, $header == 'From' || $header == 'Reply-To'); break; } } |