Changeset 2024 for FCKeditor.Net/trunk

Show
Ignore:
Timestamp:
2008-05-28 22:26:38 (6 months ago)
Author:
alfonsoml
Message:

Decode correctly the & at the server. #1908

Location:
FCKeditor.Net/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor.Net/trunk/FCKeditor.cs

    r1202 r2024  
    457457                        if ( this.Config["HtmlEncodeOutput"] != "false" ) 
    458458                        { 
    459                                 postedValue = postedValue.Replace( "&", "&" ) ; 
    460459                                postedValue = postedValue.Replace( "&lt;", "<" ) ; 
    461460                                postedValue = postedValue.Replace( "&gt;", ">" ) ; 
     461                                postedValue = postedValue.Replace( "&amp;", "&" ) ; 
    462462                        } 
    463463 
  • FCKeditor.Net/trunk/_whatsnew.html

    r2021 r2024  
    4343                Fixed Bugs:</p> 
    4444        <ul> 
    45                 <li></li> 
     45                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1908">#1908</a>] &amp;amp; was 
     46                        decoded at the wrong time in the server, leading to data loss.</li> 
    4647        </ul> 
    4748        <h3>