Making WordPress.org


Ignore:
Timestamp:
02/07/2024 06:15:34 AM (2 years ago)
Author:
dd32
Message:

Trac: Restore CDATA, Trac will fatal without it. Partially reverts [13181].

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/trac.wordpress.org/templates/update-headers.php

    r13183 r13184  
    6363    $html = preg_replace( '#<style([^>]*)><!\[CDATA\[(.+?)\]\]></style>#ism', "<style$1>$2</style>", $html );
    6464
    65     // Remove CDATA tags in <script>
    66     $html = preg_replace( '#<script([^>]*)><!\[CDATA\[(.+?)\]\]></script>#ism', "<script$1>$2</script>", $html );
     65    // Escape CDATA tags in <script>. REQUIRED. Trac will fatal without it.
     66    $html = preg_replace( '#<script([^>]*)><!\[CDATA\[(.+?)\]\]></script>#ism', "<script$1>//<![CDATA[\n$2\n//]]></script>", $html );
    6767
    6868    // Remove trailing whitespace.
Note: See TracChangeset for help on using the changeset viewer.