Make WordPress Core


Ignore:
Timestamp:
07/28/2014 07:54:50 PM (12 years ago)
Author:
azaozz
Message:

Formatting: make the removal of white space around <option> greedy, see #28217.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/formatting.php

    r29315 r29316  
    395395    if ( strpos( $pee, '<option' ) !== false ) {
    396396        // no P/BR around option
    397         $pee = preg_replace( '|\s<option|', '<option', $pee );
    398         $pee = preg_replace( '|</option>\s|', '</option>', $pee );
     397        $pee = preg_replace( '|\s*<option|', '<option', $pee );
     398        $pee = preg_replace( '|</option>\s*|', '</option>', $pee );
    399399    }
    400400
Note: See TracChangeset for help on using the changeset viewer.