Ticket #53870: 53870.patch
File 53870.patch, 2.3 KB (added by , 3 years ago) |
---|
-
src/wp-content/themes/twentyfourteen/inc/custom-header.php
144 144 ?> 145 145 <div id="headimg"> 146 146 <?php if ( get_header_image() ) : ?> 147 <img src="<?php header_image(); ?>" alt="" >147 <img src="<?php header_image(); ?>" alt="" /> 148 148 <?php endif; ?> 149 149 <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> 150 150 </div> -
src/wp-includes/media-template.php
1479 1479 1480 1480 <?php // Template for the Crop area layout, used for example in the Customizer. ?> 1481 1481 <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.' ); ?>" /> 1483 1483 <div class="upload-errors"></div> 1484 1484 </script> 1485 1485 -
src/wp-includes/SimplePie/Parser.php
563 563 $hidden = $j === 0 ? '' : 'class="hidden" '; 564 564 $description .= '<a href="'.$photo_list[$j].'" '.$hidden. 565 565 'data-lightbox="image-set-'.$image_set_id.'">'. 566 '<img src="'.$photo_list[$j].'" ></a>';566 '<img src="'.$photo_list[$j].'" /></a>'; 567 567 } 568 568 $description .= '<br><b>'.$count.' photos</b></p>'; 569 569 } 570 570 else if ($count == 1) { 571 $description = '<p><img src="'.$photo_list[0].'" ></p>';571 $description = '<p><img src="'.$photo_list[0].'" /></p>'; 572 572 } 573 573 } 574 574 if (isset($entry['properties']['content'][0]['html'])) {