Hello.
This issue is caused by browser, which inserts some its own value if the editable region is empty when save it.
This value differ according to browser:
IE : empty
FF : <br />
Chrome :
You can check that IE or FF adding different values.
Therefore, there is no setting in Kentico
CMS which could influence this. You would need handle it in source code, in FCKEditor.cs class, ResolvedValue property´s definition.
You can e.g. change it for example like this:
public string ResolvedValue
{
get
{
string value = HTMLHelper.UnResolveUrls(this.Value, null);
if (FixXHTML)
{
value = HTMLHelper.AddSelfClose(value);
value = HTMLHelper.FixJavaScript(value);
value = HTMLHelper.FixUrl(value);
value = HTMLHelper.LowerCaseTags(value);
}
if (value.ToLower() == " ")
{
value = String.Empty;
}
return value;
}
set
{
this.Value = HTMLHelper.ResolveUrls(value, null);
}
}
You can also see google and read more about it, so you can see this is a bug related to FCKEditor:
www.google.cz/#hl=en&q=bug+fckeditor+br+%26nbsp+empty+text&aq=f&aqi=&aql=&oq=&gs_rfai=&fp=8be3f3b228a82c7bAnyway, we plan change of editor from FCKEditor to CKEditor within version 6.
I believe this bug will be fixed there (
ckeditor.com/whatsnew/all)
Best Regards,
Radek Macalik