Making WordPress.org


Ignore:
Timestamp:
01/29/2019 12:08:18 PM (7 years ago)
Author:
ocean90
Message:

WordPress.org Main Theme: Don't escape static URLs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-download.php

    r8157 r8159  
    117117                                /* translators: URL to installation guide */
    118118                                wp_kses_post( __( 'With our famous 5-minute installation, setting up WordPress for the first time is simple. We’ve created a <a href="%1$s">handy guide</a> to see you through the installation process.', 'wporg' ) ),
    119                                 esc_url( 'https://codex.wordpress.org/Installing_WordPress#Famous_5-Minute_Installation' )
     119                                'https://codex.wordpress.org/Installing_WordPress#Famous_5-Minute_Installation'
    120120                            );
    121121                            ?>
     
    130130                                /* translators: URL to WordPress mailing list */
    131131                                wp_kses_post( __( 'Want to get notified about WordPress releases? Join the <a href="%1$s">WordPress Announcements mailing list</a> and we will send a friendly message whenever there is a new stable release.', 'wporg' ) ),
    132                                 esc_url( 'https://wordpress.org/list/' )
     132                                'https://wordpress.org/list/'
    133133                            );
    134134                            ?>
     
    144144                                wp_kses_post( __( 'We recommend servers running version %1$s or greater of <a href="%2$s">PHP</a> and <a href="%3$s">MySQL</a> version %4$s <em>OR</em> <a href="%5$s">MariaDB</a> version %6$s or greater.', 'wporg' ) ),
    145145                                RECOMMENDED_PHP,
    146                                 esc_url( 'https://www.php.net/' ),
    147                                 esc_url( 'https://www.mysql.com/' ),
     146                                'https://secure.php.net/',
     147                                'https://www.mysql.com/',
    148148                                '5.6',
    149                                 esc_url( 'https://mariadb.org/' ),
     149                                'https://mariadb.org/',
    150150                                '10.0'
    151151                            );
     
    156156                                /* translators: 1: URL to Apache website; 2: URL to Nginx website */
    157157                                wp_kses_post( __( 'We also recommend either <a href="%1$s">Apache</a> or <a href="%2$s">Nginx</a> as the most robust options for running WordPress, but neither is required.', 'wporg' ) ),
    158                                 esc_url( 'https://httpd.apache.org/' ),
    159                                 esc_url( 'https://nginx.org/' )
     158                                'https://httpd.apache.org/',
     159                                'https://nginx.org/'
    160160                            );
    161161                            ?>
Note: See TracChangeset for help on using the changeset viewer.