﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
258	ASP Boolean type localization bug	falco		"On non-english ASP servers the String representation of boolean types is localized,
for example, the hungraian string representation of True is ""Igaz"" and False is ""Hamis"". This produces several bugs, for example in the Demo you can't select other language, only the Dafault.   
Because of this, Function EncodeConfig in fckeditor.asp should be corrected to something like this:

{{{
Private Function EncodeConfig( valueToEncode )
	        
        If vartype(valueToEncode)<>vbBoolean then 
          EncodeConfig = Replace( valueToEncode, ""&"", ""%26"" )
          EncodeConfig = Replace( EncodeConfig , ""="", ""%3D"" )
	  EncodeConfig = Replace( EncodeConfig , """""""", ""%22"" )
	Else
          If valueToEncode=True Then
            EncodeConfig=""True""
          Else
            EncodeConfig=""False""
          End If 
        End if                           

      End Function
}}}

    
Best Regards[[BR]]
falco[[BR]]
falco1@freeweb.hu"	Bug	closed	Normal	FCKeditor 2.4.3	Server : ASP		fixed		
