Make WordPress Core

Ticket #53870: 53870.patch

File 53870.patch, 2.3 KB (added by akabarikalpesh, 3 years ago)

I added "/". please check and let me know if any changes.

  • src/wp-content/themes/twentyfourteen/inc/custom-header.php

     
    144144                ?>
    145145        <div id="headimg">
    146146                <?php if ( get_header_image() ) : ?>
    147                 <img src="<?php header_image(); ?>" alt="">
     147                <img src="<?php header_image(); ?>" alt="" />
    148148                <?php endif; ?>
    149149                <h1 class="displaying-header-text"><a id="name" style="<?php echo esc_attr( sprintf( 'color: #%s;', get_header_textcolor() ) ); ?>" onclick="return false;" href="<?php echo esc_url( home_url( '/' ) ); ?>" tabindex="-1"><?php bloginfo( 'name' ); ?></a></h1>
    150150        </div>
  • src/wp-includes/media-template.php

     
    14791479
    14801480        <?php // Template for the Crop area layout, used for example in the Customizer. ?>
    14811481        <script type="text/html" id="tmpl-crop-content">
    1482                 <img class="crop-image" src="{{ data.url }}" alt="<?php esc_attr_e( 'Image crop area preview. Requires mouse interaction.' ); ?>">
     1482                <img class="crop-image" src="{{ data.url }}" alt="<?php esc_attr_e( 'Image crop area preview. Requires mouse interaction.' ); ?>" />
    14831483                <div class="upload-errors"></div>
    14841484        </script>
    14851485
  • src/wp-includes/SimplePie/Parser.php

     
    563563                                                        $hidden = $j === 0 ? '' : 'class="hidden" ';
    564564                                                        $description .= '<a href="'.$photo_list[$j].'" '.$hidden.
    565565                                                                'data-lightbox="image-set-'.$image_set_id.'">'.
    566                                                                 '<img src="'.$photo_list[$j].'"></a>';
     566                                                                '<img src="'.$photo_list[$j].'" /></a>';
    567567                                                }
    568568                                                $description .= '<br><b>'.$count.' photos</b></p>';
    569569                                        }
    570570                                        else if ($count == 1) {
    571                                                 $description = '<p><img src="'.$photo_list[0].'"></p>';
     571                                                $description = '<p><img src="'.$photo_list[0].'" /></p>';
    572572                                        }
    573573                                }
    574574                                if (isset($entry['properties']['content'][0]['html'])) {