﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
4226	EditorTag doesn't set value-attribute if the value is an empty string	Toni Paloniemi		"EditorTag doesn't set value-attribute if the value is an empty string. The value in this case is left to null, and user will see the text 'null' when using the editor.

Example on how to reproduce:

{{{
<fck:editor instanceName=""demo"" value="""" />
}}}

The problem is in the EditorTag-file on lines 126 and 127:
			
{{{
if (Utils.isNotEmpty(value))
    fckEditor.setValue(value);
}}}

Either it should only check for null, or the value property of the fckEditor object should have a not null default value.

This problem began with version 2.5.

The workaround I use to get around this is to insert one space character as a value if my value is empty."	Bug	closed	Normal		General		worksforme		
