Changeset 847
- Timestamp:
- 2007-09-19 17:43:47 (3 years ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 3 modified
-
editor/_source/internals/fck.js (modified) (1 diff)
-
fckconfig.js (modified) (1 diff)
-
_whatsnew.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/_source/internals/fck.js
r834 r847 247 247 UpdateLinkedField : function() 248 248 { 249 FCK.LinkedField.value = FCK.GetXHTML( FCKConfig.FormatOutput ) ; 249 var value = FCK.GetXHTML( FCKConfig.FormatOutput ) ; 250 251 if ( FCKConfig.HtmlEncodeOutput ) 252 value = FCKTools.HTMLEncode( value ) ; 253 254 FCK.LinkedField.value = value ; 250 255 FCK.Events.FireEvent( 'OnAfterLinkedFieldUpdate' ) ; 251 256 }, -
FCKeditor/trunk/fckconfig.js
r837 r847 95 95 FCKConfig.PreserveSessionOnFileBrowser = false ; 96 96 FCKConfig.FloatingPanelsZIndex = 10000 ; 97 FCKConfig.HtmlEncodeOutput = false ; 97 98 98 99 FCKConfig.TemplateReplaceAll = true ; -
FCKeditor/trunk/_whatsnew.html
r828 r847 87 87 <li>The EditorAreaCSS config option can now also be set to a string of paths separated 88 88 by commas.</li> 89 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1266">#1266</a>] Introducing 90 the HtmlEncodeOutput setting to instruct the editor to encode the posted data.</li> 89 91 </ul> 90 92 <p>