Changeset 338
- Timestamp:
- 2007-05-30 23:37:52 (20 months ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 2 modified
-
fckeditor.asp (modified) (2 diffs)
-
_whatsnew.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/fckeditor.asp
r132 r338 1 <!--1 <!-- 2 2 * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 3 * Copyright (C) 2003-2007 Frederico Caldeira Knabben … … 188 188 189 189 Private Function EncodeConfig( valueToEncode ) 190 EncodeConfig = Replace( valueToEncode, "&", "%26" ) 191 EncodeConfig = Replace( EncodeConfig , "=", "%3D" ) 192 EncodeConfig = Replace( EncodeConfig , """", "%22" ) 190 ' The locale of the asp server makes the conversion of a boolean to string different to "true" or "false" 191 ' so we must do it manually 192 If vartype(valueToEncode) = vbBoolean then 193 If valueToEncode=True Then 194 EncodeConfig="True" 195 Else 196 EncodeConfig="False" 197 End If 198 Else 199 EncodeConfig = Replace( valueToEncode, "&", "%26" ) 200 EncodeConfig = Replace( EncodeConfig , "=", "%3D" ) 201 EncodeConfig = Replace( EncodeConfig , """", "%22" ) 202 End if 203 193 204 End Function 194 205 -
FCKeditor/trunk/_whatsnew.html
r332 r338 108 108 form had a button named "submit" the "Save" command didn't work in Firefox.</li> 109 109 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/414">#414</a>] If tracing was 110 globally enabled in Asp.Net 2.0 then the Asp.Net connector did fail.</li>110 globally enabled in Asp.Net 2.0 then the Asp.Net connector did fail.</li> 111 111 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/520">#520</a>] The "Select 112 112 Field" properties dialog was not correctly handling select options with &, < 113 113 and >.</li> 114 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/258">#258</a>] The Asp integration 115 didn't pass boolean values in English, using instead the locale of the server and failing.</li> 114 116 </ul> 115 117 <h3>