|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patchesbugfix-53304 (last revision 2010-11-17 18:18 UTC by daniel dot mueller at inexio dot net)Pull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-11-17 19:36 UTC] daniel dot mueller at inexio dot net
-Operating System: FreeBSD 7.2-RELEASE
+Operating System: all
[2010-11-17 19:36 UTC] daniel dot mueller at inexio dot net
[2010-11-23 13:57 UTC] aharvey@php.net
-Status: Open
+Status: Assigned
-Assigned To:
+Assigned To: aharvey
[2010-11-25 22:38 UTC] iliaa@php.net
[2010-11-25 22:38 UTC] iliaa@php.net
-Status: Assigned
+Status: Closed
-Assigned To: aharvey
+Assigned To: iliaa
[2010-11-25 22:38 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 13:00:01 2025 UTC |
Description: ------------ iconv_mime_docode() doesn't handle lowercase hex digits in Q-encoding. According rfc2047 hex digits should be in uppercase, but it must not be in this way. Example: =c3=bc - gives error =C3=BC - works Test script: --------------- <?php error_reporting(E_ALL); echo iconv_mime_decode('=?utf-8?Q?Nachricht_=c3=bcber_Kontaktformular_www.inexio.net?=', 0, 'UTF-8') . "\n"; echo iconv_mime_decode('=?utf-8?Q?Nachricht_=C3=BCber_Kontaktformular_www.inexio.net?=', 0, 'UTF-8') . "\n"; ?> Expected result: ---------------- Nachricht über Kontaktformular www.inexio.net Nachricht über Kontaktformular www.inexio.net Actual result: -------------- Notice: iconv_mime_decode(): Unknown error (25) in /usr/home/dm/test.php on line 3 Nachricht über Kontaktformular www.inexio.net