Actions
Bug #38300
closedIE9 can not insert links any more
Status:
Closed
Priority:
Must have
Assignee:
Category:
RTE (rtehtmlarea + ckeditor)
Target version:
Start date:
2012-06-22
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
4.7
PHP Version:
5.3
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Inserting links in IE9 does not work anymore since 4.7.1
This problem is caused because the inRange-method of the range object is not supported any more here.
As a workaround a replaced all occurrences of (!Ext.isIE) with (!Ext.isIE || Ext.isIE9)
in typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Link/typo3link.js and removed the temp compressor-files.
288c288
< if (!Ext.isIE || Ext.isIE9) {
---
if (!Ext.isIE) {
319c319
< if (!Ext.isIE || Ext.isIE9) {
---
if (!Ext.isIE) {
414c414
< if (!Ext.isIE || Ext.isIE9) {
---
if (!Ext.isIE) {
Actions