Make WordPress Core

Ticket #46103: 46103.2.diff

File 46103.2.diff, 1.5 KB (added by mukesh27, 6 years ago)

Added missing semicolon in foreach loop.

  • wp-includes/media-template.php

    diff --git a/wp-includes/media-template.php b/wp-includes/media-template.php
    index fb44261..8aa093d 100644
    a b function wp_underscore_audio_template() { 
    2828        if ( ! _.isUndefined( data.model.<?php echo $attr; ?> ) && data.model.<?php echo $attr; ?> ) {
    2929                #> <?php echo $attr; ?><#
    3030        }
    31         <?php endforeach ?>#>
     31        <?php endforeach; ?>#>
    3232>
    3333        <# if ( ! _.isEmpty( data.model.src ) ) { #>
    3434        <source src="{{ data.model.src }}" type="{{ wp.media.view.settings.embedMimes[ data.model.src.split('.').pop() ] }}" />
    function wp_underscore_video_template() { 
    123123        if ( ! _.isUndefined( data.model.<?php echo $attr; ?> ) && data.model.<?php echo $attr; ?> ) {
    124124                #> <?php echo $attr; ?><#
    125125        }
    126         <?php endforeach ?>#>
     126        <?php endforeach; ?>#>
    127127>
    128128        <# if ( ! _.isEmpty( data.model.src ) ) {
    129129                if ( isYouTube ) { #>
    function wp_print_media_templates() { 
    11241124                                        <button type="button" class="button-link remove-setting"><?php _e( 'Remove audio source' ); ?></button>
    11251125                                </div>
    11261126                                <# } #>
    1127                                 <?php endforeach ?>
     1127                                <?php endforeach; ?>
    11281128
    11291129                                <# if ( ! _.isEmpty( html5types ) ) { #>
    11301130                                <div class="setting">
    function wp_print_media_templates() { 
    12071207                                        <button type="button" class="button-link remove-setting"><?php _e( 'Remove video source' ); ?></button>
    12081208                                </div>
    12091209                                <# } #>
    1210                                 <?php endforeach ?>
     1210                                <?php endforeach; ?>
    12111211                                </div>
    12121212
    12131213                                <# if ( ! _.isEmpty( html5types ) ) { #>