Changes between Initial Version and Version 2 of Ticket #2315


Ignore:
Timestamp:
Oct 11, 2008, 6:35:15 PM (16 years ago)
Author:
Alfonso Martínez de Lizarrondo
Comment:

dup of #1908

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2315

    • Property Status changed from new to closed
    • Property Resolution changed from to duplicate
  • Ticket #2315 – Description

    initial v2  
    1414The reason is an error in the FCKeditor.LoadPostData method; the lines
    1515
     16{{{
    1617postedValue = postedValue.Replace("&", "&");
    1718postedValue = postedValue.Replace( "&lt;", "<" ) ;
    1819postedValue = postedValue.Replace( "&gt;", ">" ) ;
     20}}}
    1921
    2022should be instead:
    2123
     24{{{
    2225postedValue = postedValue.Replace( "&lt;", "<" ) ;
    2326postedValue = postedValue.Replace( "&gt;", ">" ) ;
    2427postedValue = postedValue.Replace("&amp;", "&");
     28}}}
    2529
    2630This way, the &amp;lt; will be correctly interpreted.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy