Opened 17 years ago

Closed 17 years ago

Last modified 17 years ago

#258 closed Bug (fixed)

ASP Boolean type localization bug

Reported by: falco Owned by:
Priority: Normal Milestone: FCKeditor 2.4.3
Component: Server : ASP Version:
Keywords: Cc:

Description

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
falco
falco1@…

Change History (2)

comment:1 Changed 17 years ago by Frederico Caldeira Knabben

Milestone: FCKeditor 2.4.3

comment:2 Changed 17 years ago by Alfonso Martínez de Lizarrondo

Component: GeneralServer : ASP
Resolution: fixed
Status: newclosed

Fixed with [338]

Thanks.

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy