* Fixed bug #15244: htmlArea RTE: textearea Id may not be unique in FE
* Fixed bug #15250: htmlArea RTE: FE additionalJS_post javascript may be displayed as HTML text
+ * Fixed bug #15121: htmlArea RTE: Javascript Error in IE7 prevent Link dialogue from opening
2010-07-27 Xavier Perseguers <typo3@perseguers.ch>
* Fixed bug #15244: htmlArea RTE: textearea Id may not be unique in FE
* Fixed bug #15250: htmlArea RTE: FE additionalJS_post javascript may be displayed as HTML text
+ * Fixed bug #15121: htmlArea RTE: Javascript Error in IE7 prevent Link dialogue from opening
2010-07-26 Stanislas Rolland <typo3@sjbr.ca>
if (this.pageTSConfiguration && this.pageTSConfiguration.additionalAttributes) {
var additionalAttributes = this.pageTSConfiguration.additionalAttributes.split(",");
for (var i = additionalAttributes.length; --i >= 0;) {
- if (node.hasAttribute(additionalAttributes[i])) {
+ // hasAttribute() not available in IE < 8
+ if ((node.hasAttribute && node.hasAttribute(additionalAttributes[i])) || node.getAttribute(additionalAttributes[i]) != null) {
additionalParameter += "&curUrl[" + additionalAttributes[i] + "]=" + encodeURIComponent(node.getAttribute(additionalAttributes[i]));
}
}