Changes between Initial Version and Version 2 of Ticket #2315
- Timestamp:
- Oct 11, 2008, 6:35:15 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2315
-
Property
Status
changed from
new
toclosed
-
Property
Resolution
changed from
to
duplicate
-
Property
Status
changed from
-
Ticket #2315 – Description
initial v2 14 14 The reason is an error in the FCKeditor.LoadPostData method; the lines 15 15 16 {{{ 16 17 postedValue = postedValue.Replace("&", "&"); 17 18 postedValue = postedValue.Replace( "<", "<" ) ; 18 19 postedValue = postedValue.Replace( ">", ">" ) ; 20 }}} 19 21 20 22 should be instead: 21 23 24 {{{ 22 25 postedValue = postedValue.Replace( "<", "<" ) ; 23 26 postedValue = postedValue.Replace( ">", ">" ) ; 24 27 postedValue = postedValue.Replace("&", "&"); 28 }}} 25 29 26 30 This way, the &lt; will be correctly interpreted.