Make WordPress Core

Ticket #3854: 3854.2.diff

File 3854.2.diff, 944 bytes (added by rob1n, 18 years ago)

Take out script, object and param

  • wp-includes/formatting.php

     
    5555        $pee = $pee . "\n"; // just to make things a little easier, pad the end
    5656        $pee = preg_replace('|<br />\s*<br />|', "\n\n", $pee);
    5757        // Space things out a little
    58         $allblocks = '(?:table|thead|tfoot|caption|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|select|form|map|area|blockquote|address|math|style|script|object|input|param|p|h[1-6])';
     58        $allblocks = '(?:table|thead|tfoot|caption|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|select|form|map|area|blockquote|address|math|style|input|p|h[1-6])';
    5959        $pee = preg_replace('!(<' . $allblocks . '[^>]*>)!', "\n$1", $pee);
    6060        $pee = preg_replace('!(</' . $allblocks . '>)!', "$1\n\n", $pee);
    6161        $pee = str_replace(array("\r\n", "\r"), "\n", $pee); // cross-platform newlines