diff options
| author | Christian Schneider | 2026-05-18 19:50:42 +0200 |
|---|---|---|
| committer | Christian Schneider | 2026-05-18 19:50:42 +0200 |
| commit | 432a977ea02be3cda291f998d16372dc4730d99f (patch) | |
| tree | 609b2da3d083eae6c377a08a727edc608dde2181 /it_mail.class | |
| parent | 1cfbfe0182aeba9afe0cdbf9509d495e64d40e8c (diff) | |
| download | itools-432a977ea02be3cda291f998d16372dc4730d99f.tar.gz itools-432a977ea02be3cda291f998d16372dc4730d99f.tar.bz2 itools-432a977ea02be3cda291f998d16372dc4730d99f.zip | |
Fix typo which did not have any impact because scheme 'B' is default
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 3d57bc3..ffe8b0f 100644 --- a/it_mail.class +++ b/it_mail.class @@ -377,7 +377,7 @@ function header_encode($string) ? $encoded : (($encoded = @iconv_mime_encode('', $string, array('scheme' => 'B', 'input-charset' => $this->charset, 'output-charset' => $this->charset))) !== false ? $encoded - : iconv_mime_encode('', $string, array('scheme', 'B', 'input-charset' => 'ISO-8859-1', 'output-charset' => $this->charset))), + : iconv_mime_encode('', $string, array('scheme' => 'B', 'input-charset' => 'ISO-8859-1', 'output-charset' => $this->charset))), ' :' ) : $string; |