|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-04-01 12:09 UTC] kir@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 11 03:00:01 2025 UTC |
line 105 in ext/standard/quot_print.c: else if ( (str_in[i+k] == 10) && (str_in[i+k+1] == 13)) It should be: else if ( (str_in[i+k] == 13) && (str_in[i+k+1] == 10)) This bug breaks testcase ext/standard/tests/general_functions/002.phpt on OS/2 and most likely on windows too. Might be on of the problems reported in #9498.