Zum Inhalt springen

TYPO3 6.2 RTE funktioniert nicht mehr

Ich habe dazu diese Anleitung gefunden:
https://t3planet.com/typo3-tutorials/rte-editor-issue-with-typo3-6-7/

Allerdings stimmt der Code nicht mehr ganz, daher hier das Update für den 6.2 Part:

Öffne /typo3/sysext/rtehtmlarea/htmlarea/htmlarea.js

Suche nach:
src: Ext.isGecko ? 'javascript:void(0);' : (Ext.isWebKit ? 'javascript: \'' + HTMLArea.htmlEncode(this.config.documentType + this.config.blankDocument) + '\'' : HTMLArea.editorUrl + 'popups/blank.html')

Ersetzte durch:
src: Ext.isGecko ? 'javascript:void(0);' : (Ext.isWebKit ? 'about:blank;' : HTMLArea.editorUrl + 'popups/blank.html')
Schreibe einen Kommentar