Actions
Bug #21390
closedMissing JS linebreak crashes output within IE 8.0 (non non-compatibility mode)
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2009-10-28
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.2
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
The problem is the same like http://bugs.typo3.org/view.php?id=8421.
New about this issue is, that it crashes the output on IE 8.0+ in non-compatibility mode which is default for many users.
The insert of the line-break may not be done within typo3/sysext/cms/tslib/class.tslib_pagegen.php because of the use of minifyJavaScript this will not take effect.
To be changed:
t3lib/class.t3lib_div.php
Line 2509
- return $script;
+ return "\n" . $script;
(issue imported from #M12378)
Files
Actions