Make WordPress Core

Ticket #26343: 26343.diff

File 26343.diff, 496 bytes (added by nofearinc, 11 years ago)

patch refresh

  • wp-includes/shortcodes.php

     
    157157                        return false;
    158158
    159159                foreach ( $matches as $shortcode ) {
    160                         if ( $tag === $shortcode[2] )
     160                        if ( $tag === $shortcode[2] ) {
    161161                                return true;
     162                        } elseif ( isset( $shortcode[5] ) && has_shortcode( $shortcode[5], $tag ) ) {
     163                                return true;
     164                        }
    162165                }
    163166        }
    164167        return false;