Changeset bc6ac4d in github
- Timestamp:
- Nov 23, 2009 5:46:49 AM (3 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- c96c5a9
- Parents:
- 469f84f
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/main.inc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
r469f84f rbc6ac4d 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) -
program/include/main.inc
r6c5aa6b rbc6ac4d 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.
