new Firefox 2.0.0.13 breaks Typo3 extension rtehtmlarea – again
Category: tools| March 27th, 2008It’s almost exactly 1 year ago that the then new firefox version 2.0.0.3 broke the funktionality of the typo3 wysiwyg editor rtehtmlarea. Now with the firefox 2.0.0.13 version it happend again…
And here’s the solution:
Just as one year ago the browser recognition failed at the very same spot:
find in
~typo3_src/typo3/sysext/rtehtmlarea/htmlarea/htmlarea.js
the line
HTMLArea.is_wamcom = (HTMLArea.agt.indexOf("wamcom") != -1) || (HTMLArea.is_gecko && HTMLArea.agt.indexOf("1.3") != -1 && HTMLArea.agt.indexOf(".1.3") == -1);
and replace it with
HTMLArea.is_wamcom = (HTMLArea.agt.indexOf("wamcom") != -1) || (HTMLArea.is_gecko && HTMLArea.agt.indexOf("1.3") != -1 && HTMLArea.agt.indexOf(".1.3") == -1 && HTMLArea.agt.indexOf(".1.13") == -1);
changes in bold red
then change the same statement in
~typo3_src/typo3/sysext/rtehtmlarea/htmlarea/htmlarea-compressed.js
finally delete all *.js files in typo3temp/, clear your browser cache, and although not really neccesary, Clear cache in typo3conf/
yours truely
seoXplorer
