|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2000-10-11 12:31 UTC] burton at mailshell dot com
quoted_printable_decode does not appear to handle soft line breaks as defined in RFC 1521. That is, lines ending with an equal symbol followed by carriage return and line feed should be replaced by the empty string PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 09:00:01 2025 UTC |
--- php-current/functions/quot_print.c.orig Sat Jan 1 07:31:16 2000 +++ php-current/functions/quot_print.c Mon Sep 18 17:00:22 2000 @@ -93,10 +93,9 @@ str[j++] = (_php3_hex2int((int)str[i+1]) << 4 ) + _php3_hex2int((int)str[i+2]); i += 3; - } - else if ( str[i] == 13 ) + } else if ( (str[i] == '=') && str[i+1] && (str[i+1] == 10) ) { - i++; + i += 2; } else {