﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
5345	delete editor.config.elementsPath_filters on editor.distroy based on r5242	omnishelley	Alfonso Martínez de Lizarrondo	"On destroy function, set items of editor.config.elementsPath_filters to null, but not reset length=0.

So reopening a editor with CKEDITOR.replace, fire the event of ""selectionChange"" on elementspath/plugin.js, throw a exception.

Repair this bug only needs a statement on 508 line ""_source/core/editor.js"" :
	items = editor.config.elementsPath_filters;
	for ( index= 0 ; index < items.length ; index++ ){
		items[ index ] = null;
	}

	items.length=0; //add by ominshelley
"	Bug	closed	Normal	CKEditor 3.3	General	SVN (CKEditor) - OLD	fixed	Confirmed Review+	
