Changeset 3128 in subversion
- Timestamp:
- Nov 23, 2009 5:46:49 AM (3 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/main.inc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r3119 r3128 2 2 =========================== 3 3 4 - Fix unicode para and line separators in javascript response (#1486310) 4 5 - additional_message_headers: allow unsetting headers, support plugin's config file (#1486268) 5 6 - Fix displaying of hidden directories in skins list (#1486301) -
trunk/roundcubemail/program/include/main.inc
r3104 r3128 486 486 487 487 for ($c=160; $c<256; $c++) // can be increased to support more charsets 488 $xml_rep_table[ Chr($c)] = "&#$c;";488 $xml_rep_table[chr($c)] = "&#$c;"; 489 489 490 490 $xml_rep_table['"'] = '"'; … … 492 492 $js_rep_table["'"] = "\\'"; 493 493 $js_rep_table["\\"] = "\\\\"; 494 // Unicode line and paragraph separators (#1486310) 495 $js_rep_table[chr(hexdec(E2)).chr(hexdec(80)).chr(hexdec(A8))] = '
'; 496 $js_rep_table[chr(hexdec(E2)).chr(hexdec(80)).chr(hexdec(A9))] = '
'; 494 497 } 495 498
Note: See TracChangeset
for help on using the changeset viewer.
