﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
12424	Conflict with Toolbar and Templates...	Angel		"I have detected a bug that can be reproduced easily.
The code below is a reduction of the sample code: ""inlineall.html"".

The bug is:
If you run the below code without setting your own toolbar configuration, I mean NOT setting: ""editor.config.toolbar"", then the templates divisions are inserted properly. But if you set the previous configuration for example the toolbar buttons below, then the templates divisions are not inserted properly and some <br /> tags are inserted instead.

If you have a patch or workaround for this bug, please, let me know, because it is very important for me because soon I have to deliver a job where I used this fantastic tool you created. Congratulations!

Regards, Angel.

{{{
<!DOCTYPE html>
<html>
<head>
	<meta charset=""utf-8"">
	<title>Massive inline editing &mdash; CKEditor Sample</title>
	<script src=""../ckeditor.js""></script>
	<script>
		CKEDITOR.on('instanceCreated', function(event) {
			var editor = event.editor;
			editor.config.toolbar = [[ 'Styles', 'Templates' ]];
		});
	</script>
	<link href=""sample.css"" rel=""stylesheet"">
</head>
<body>
	<div contenteditable=""true"">
		<p>
			Lorem ipsum dolor sit amet enim. Etiam ullamcorper. Suspendisse a pellentesque dui, non felis. Maecenas malesuada elit lectus felis, malesuada ultricies.
		</p>
		<p>
			Curabitur et ligula. Ut molestie a, ultricies porta urna. Vestibulum commodo volutpat a, convallis ac, laoreet enim. Phasellus fermentum in, dolor. Pellentesque facilisis. Nulla imperdiet sit amet magna. Vestibulum dapibus, mauris nec malesuada fames ac.
		</p>
	</div>
</body>
</html>

}}}
"	Bug	closed	Normal		UI : Toolbar		invalid		angelherriv@…
