View Issue Details

IDProjectCategoryView StatusLast Update
0000947XdebugUncategorizedpublic2013-05-22 03:51
ReporterRyuto Assigned To 
PrioritynormalSeveritytrivialReproducibilityalways
Status closedResolutionfixed 
Platformx86OSLinuxOS Version2.6.32-5-686
Product Version2.2.1 
Target Version2.2.3Fixed in Version2.2.3 
Summary0000947: Newlines converted when html_errors = 0
Description

Newlines in strings are converted to "\r\n" when "html_errors" is 0.

Steps To Reproduce

ini_get('html_errors');
$t = 'aze
rty\r\nqwerty';
var_dump($t);

Output :
string(22) "aze\r\n rty\r\nqwerty"

TagsNo tags attached.
Operating SystemLinux
PHP Version5.4.10-5.4.14

Activities

Ryuto

2013-05-14 08:22

reporter   ~0002460

Sorry, the first line is
ini_set('html_errors', 0);