﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
7244	Wrong application of buttons (readmore, image...)	yoleth		"When there are more than one editor on a page, actions on buttons don't apply on the right editor but on the last one.

Used it on joomla 1.6

The problem come from function onGetInsertMethod($name){}

I replaced

$js= ""function jInsertEditorText( text,editor ) {
  text = text.replace( /<img src=\""/, '<img src=\"""".$url.""' );
  CKEDITOR.instances."".$name."".insertHtml( text );
}"";

By

$js= ""function jInsertEditorText( text,editor ) {
  text = text.replace( /<img src=\""/, '<img src=\"""".$url.""' );
  CKEDITOR.instances[editor].insertHtml( text );
}"";"	Bug	closed	Normal		General	3.5	invalid		
