|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2013-12-15 16:09 UTC] dennis1993 at trash-mail dot com
Description: ------------ If I create this file: <?php phpinfo(); ?> it looks like this in Firefox: http://www7.pic-upload.de/15.12.13/tqmluatmzksk.png The part "Additional .ibi files parsed" is correct. In Internet Explorer it looks like this: http://www7.pic-upload.de/15.12.13/1qqaxmknt5.png You can see, it is no line break. It is in PHP 5.2, 5.3, 5.4 and 5.5. I've tested it with IE 8, IE9, IE10 and IE11. Where is the problem? Can you fix it, maybe? Thanks in advance! Test script: --------------- <?php phpinfo(); ?> PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 23:00:01 2025 UTC |
I can confirm the behavior. Obviously, Internet Explorer refuses to break the line before a slash character, but other browsers, including MS Edge do. Furthermore, such long lists of additional ini files are most likely relevant for distros only, and for Ubuntu the issue is solved at least as of 14.04 by choosing names like `20-gd.ini`. Feel free to also use hyphens, as IE does also break the line in this case. Finally, to my knowledge, there is no adequate solution short of adding table {word-break: break-all}, what yields otherwise undesired results. Therefore I'm closing as won't fix.