﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
9984	Blockquote with enterMode = ckeditor.ENTER_BR and autoParagraph = false creates <p> tags	Juan Pablo		"Using CKEDITOR 4 with <br /> for new lines instead of paragraphs doesn't work for Blockquote as it uses <p> tags with that tool.

This is my configuration:
{{{
  // Use <br /> instead of <p> tags.
  CKEDITOR.config.enterMode = CKEDITOR.ENTER_BR;
  CKEDITOR.config.autoParagraph = false;
}}}
This is what I'm seeing in the editor:
{{{
<body contenteditable=""true"" class=""cke_editable cke_editable_themed cke_contents_ltr"" spellcheck=""false"">
Test text
<blockquote>
<p>A blockquote</p>
</blockquote>
<p>
More lines<br>
Another line<br><br>
</p>
</body>
}}}"	Bug	new	Normal		General	4.0			
