summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Schneider2008-09-10 17:10:47 +0000
committerChristian Schneider2008-09-10 17:10:47 +0000
commit1cb01b5f92afc254c9843a5f6a34f32da4e3cdcb (patch)
treef1af8cc488ef800f8c6904f24d5ab3f86e50160a
parentf8163b71e69f38c3626b40be8028710ede686f14 (diff)
downloaditools-1cb01b5f92afc254c9843a5f6a34f32da4e3cdcb.tar.gz
itools-1cb01b5f92afc254c9843a5f6a34f32da4e3cdcb.tar.bz2
itools-1cb01b5f92afc254c9843a5f6a34f32da4e3cdcb.zip
Fix typo in hex code
-rw-r--r--it_mail.class2
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;
}
/**