Index: typo3/sysext/rtehtmlarea/htmlarea/htmlarea.js =================================================================== --- typo3/sysext/rtehtmlarea/htmlarea/htmlarea.js (révision 10488) +++ typo3/sysext/rtehtmlarea/htmlarea/htmlarea.js (copie de travail) @@ -4126,10 +4126,6 @@ } else { this.pluginInformation = pluginInformation; this.pluginInformation.name = this.name; - /* Ensure backwards compatibility */ - this.pluginInformation.developer_url = this.pluginInformation.developerUrl; - this.pluginInformation.c_owner = this.pluginInformation.copyrightOwner; - this.pluginInformation.sponsor_url = this.pluginInformation.sponsorUrl; return true; } }, Index: typo3/sysext/rtehtmlarea/htmlarea/plugins/AboutEditor/about-editor.js =================================================================== --- typo3/sysext/rtehtmlarea/htmlarea/plugins/AboutEditor/about-editor.js (révision 10487) +++ typo3/sysext/rtehtmlarea/htmlarea/plugins/AboutEditor/about-editor.js (copie de travail) @@ -213,8 +213,8 @@ Ext.iterate(this.editor.plugins, function (pluginId, plugin) { pluginsInfo.push([ plugin.name + ' ' + plugin.version, - '' + plugin.developer + '', - '' + plugin.sponsor + '' + '' + plugin.developer + '', + '' + plugin.sponsor + '' ]); }, this); return pluginsInfo;