﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
304	FormatIndentator cannot be reliably set via script interface	Thomas Tallyce		"I wish to have the FormatIndentator be a tab rather than 4 spaces. I also generally aim to put as much configuration in the scripting interface (e.g. calling via PHP/ASP/Perl/etc.) so that the config file can avoid having to be altered much.

Using


{{{
FCKConfig.FormatIndentator	= '	' ;
}}}


in fckconfig.js works fine.

But doing any of the following when calling via script (example in PHP) :


{{{
$instanceName->Config['FormatIndentator'] = '	' ;
$instanceName->Config['FormatIndentator'] = ""	"" ;
$instanceName->Config['FormatIndentator'] = ""\t"" ;
$instanceName->Config['FormatIndentator'] = ""'	'"" ;
}}}

fails. In the first three cases, NaN (not a number) is placed into the HTML source. In the fourth case, a tab surrounded by ' marks is put in (so a tab seems actually possible, just not on its own!)"	Bug	confirmed	Normal		General				
