﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
11165	The filebrowser plugin cannot be removed from the editor	Wiktor Walc	Marek Lewandowski	"1. Download the standard package
2. Modify the replacebycode sample to include just a set of plugins:
{{{
CKEDITOR.replace( 'editor1', {
	plugins: 'enterkey,entities,toolbar,wysiwygarea,image',
	filebrowserBrowseUrl : '/ckfinder/ckfinder.html'
} );
}}}
3. Open the sample, press the Image button. See that the """"Browse Server"" button '''is available''', although the filebrowser plugin isn't really enabled.

The reason why is it happening is the way how the plugin interacts with the editor:

`CKEDITOR.on( 'dialogDefinition'` is executed always when this plugin is merged into ckeditor.js (in release process). However, the `init` method of a plugin is not executed, because it is not enabled.

One of possible solutions for this issue could be to check by the plugin itself inside `CKEDITOR.on( 'dialogDefinition'` if I'm really enabled.

"	Bug	closed	Must have (possibly next milestone)	CKEditor 4.3.1	General	4.0	fixed		
