diff options
author | Christian Schneider | 2008-09-10 17:10:47 +0000 |
---|---|---|
committer | Christian Schneider | 2008-09-10 17:10:47 +0000 |
commit | 1cb01b5f92afc254c9843a5f6a34f32da4e3cdcb (patch) | |
tree | f1af8cc488ef800f8c6904f24d5ab3f86e50160a | |
parent | f8163b71e69f38c3626b40be8028710ede686f14 (diff) | |
download | itools-1cb01b5f92afc254c9843a5f6a34f32da4e3cdcb.tar.gz itools-1cb01b5f92afc254c9843a5f6a34f32da4e3cdcb.tar.bz2 itools-1cb01b5f92afc254c9843a5f6a34f32da4e3cdcb.zip |
Fix typo in hex code
-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 f5a4f6f..bc3a8c4 100644 --- a/it_mail.class +++ b/it_mail.class @@ -316,7 +316,7 @@ function send() */ function header_escape($string) { - return preg_match('/[\x00-\x1f\x80-\xff]/', $string) ? ("=?iso-8859-1?Q?" . preg_replace('/[\0x00-\x1f\x80-\xff]/e', "sprintf('=%02X', ord('\\0'))", $string) . "?=") : $string; + return preg_match('/[\x00-\x1f\x80-\xff]/', $string) ? ("=?iso-8859-1?Q?" . preg_replace('/[\x00-\x1f\x80-\xff]/e', "sprintf('=%02X', ord('\\0'))", $string) . "?=") : $string; } /** |