Make WordPress Core

Ticket #38823: 38823.0.diff

File 38823.0.diff, 1.2 KB (added by westonruter, 8 years ago)

Convert to actual patch

  • src/wp-includes/class-wp-customize-manager.php

    diff --git src/wp-includes/class-wp-customize-manager.php src/wp-includes/class-wp-customize-manager.php
    index 0909f4d..e1c879a 100644
    final class WP_Customize_Manager { 
    38223822                        'title'              => __( 'Additional CSS' ),
    38233823                        'priority'           => 200,
    38243824                        'description_hidden' => true,
    3825                         'description'        => sprintf( '%s<br /><a href="%s" class="external-link" target="_blank">%s<span class="screen-reader-text">%s</span></a>',
     3825                        'description'        => sprintf( '%s<br />%s',
    38263826                                __( 'CSS allows you to customize the appearance and layout of your site with code. Separate CSS is saved for each of your themes. In the editing area the Tab key enters a tab character. To move below this area by pressing Tab, press the Esc key followed by the Tab key.' ),
    3827                                 'https://codex.wordpress.org/Know_Your_Sources#CSS',
    3828                                 __( 'Learn more about CSS' ),
    3829                                 __( '(link opens in a new window)' )
     3827                                __( '<a href="https://codex.wordpress.org/Know_Your_Sources#CSS" class="external-link" target="_blank">Learn more about CSS<span class="screen-reader-text">(link opens in a new window)</span></a>' )
    38303828                        ),
    38313829                ) );
    38323830