From 2e516b341e81b91fd4bd6c21b8aba8bc9a0ba66e Mon Sep 17 00:00:00 2001 From: fidian Date: Wed, 8 Aug 2001 16:22:53 +0000 Subject: [PATCH] Removed extra comparison. $k must be < 256. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1476 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/mime.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/mime.php b/functions/mime.php index 3939201b..a347425b 100644 --- a/functions/mime.php +++ b/functions/mime.php @@ -749,7 +749,7 @@ break; default: $k = ord( $string{$i} ); - if( $k > 126 && $k < 256 ) { + if( $k > 126 ) { $ret .= sprintf("=%02X", $k); $l = TRUE; } else -- 2.25.1