Make WordPress Core

Changeset 29787


Ignore:
Timestamp:
09/29/2014 01:23:46 PM (10 years ago)
Author:
markjaquith
Message:

Use HTTPS links for planet.wordpress.org

see #27115

Location:
trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/readme.html

    r29713 r29787  
    7171    <dt><a href="https://wordpress.org/news/">The WordPress Blog</a></dt>
    7272        <dd>This is where you&#8217;ll find the latest updates and news related to WordPress. Recent WordPress news appears in your administrative dashboard by default.</dd>
    73     <dt><a href="http://planet.wordpress.org/">WordPress Planet</a></dt>
     73    <dt><a href="https://planet.wordpress.org/">WordPress Planet</a></dt>
    7474        <dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web.</dd>
    7575    <dt><a href="https://wordpress.org/support/">WordPress Support Forums</a></dt>
  • trunk/src/wp-admin/includes/dashboard.php

    r29785 r29787  
    968968             * @param string $link The widget's secondary link URL.
    969969             */
    970             'link' => apply_filters( 'dashboard_secondary_link', __( 'http://planet.wordpress.org/' ) ),
     970            'link' => apply_filters( 'dashboard_secondary_link', __( 'https://planet.wordpress.org/' ) ),
    971971
    972972            /**
     
    977977             * @param string $url The widget's secondary feed URL.
    978978             */
    979             'url' => apply_filters( 'dashboard_secondary_feed', __( 'http://planet.wordpress.org/feed/' ) ),
     979            'url' => apply_filters( 'dashboard_secondary_feed', __( 'https://planet.wordpress.org/feed/' ) ),
    980980
    981981            /**
  • trunk/src/wp-admin/index.php

    r27469 r29787  
    7070    $help .= '<p>' . __( "<strong>Quick Draft</strong> - Allows you to create a new post and save it as a draft. Also displays links to the 5 most recent draft posts you've started." ) . '</p>';
    7171if ( ! is_multisite() && current_user_can( 'install_plugins' ) )
    72     $help .= '<p>' . __( '<strong>WordPress News</strong> - Latest news from the official WordPress project, the <a href="http://planet.wordpress.org/">WordPress Planet</a>, and popular and recent plugins.' ) . '</p>';
     72    $help .= '<p>' . __( '<strong>WordPress News</strong> - Latest news from the official WordPress project, the <a href="https://planet.wordpress.org/">WordPress Planet</a>, and popular and recent plugins.' ) . '</p>';
    7373else
    74     $help .= '<p>' . __( '<strong>WordPress News</strong> - Latest news from the official WordPress project, the <a href="http://planet.wordpress.org/">WordPress Planet</a>.' ) . '</p>';
     74    $help .= '<p>' . __( '<strong>WordPress News</strong> - Latest news from the official WordPress project, the <a href="https://planet.wordpress.org/">WordPress Planet</a>.' ) . '</p>';
    7575if ( current_user_can( 'edit_theme_options' ) )
    7676    $help .= '<p>' . __( '<strong>Welcome</strong> - Shows links for some of the most common tasks when setting up a new site.' ) . '</p>';
Note: See TracChangeset for help on using the changeset viewer.