Bug #25092 ยป rtehtmlarea_cleanup_17659.patch
typo3/sysext/rtehtmlarea/htmlarea/htmlarea.js (copie de travail) | ||
---|---|---|
} 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;
|
||
}
|
||
},
|
typo3/sysext/rtehtmlarea/htmlarea/plugins/AboutEditor/about-editor.js (copie de travail) | ||
---|---|---|
Ext.iterate(this.editor.plugins, function (pluginId, plugin) {
|
||
pluginsInfo.push([
|
||
plugin.name + ' ' + plugin.version,
|
||
'<a href="' + plugin.developer_url + '" target="_blank">' + plugin.developer + '</a>',
|
||
'<a href="' + plugin.sponsor_url + '" target="_blank">' + plugin.sponsor + '</a>'
|
||
'<a href="' + plugin.developerUrl + '" target="_blank">' + plugin.developer + '</a>',
|
||
'<a href="' + plugin.sponsorUrl + '" target="_blank">' + plugin.sponsor + '</a>'
|
||
]);
|
||
}, this);
|
||
return pluginsInfo;
|