Changeset 29787
- Timestamp:
- 09/29/2014 01:23:46 PM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/readme.html
r29713 r29787 71 71 <dt><a href="https://wordpress.org/news/">The WordPress Blog</a></dt> 72 72 <dd>This is where you’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> 74 74 <dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web.</dd> 75 75 <dt><a href="https://wordpress.org/support/">WordPress Support Forums</a></dt> -
trunk/src/wp-admin/includes/dashboard.php
r29785 r29787 968 968 * @param string $link The widget's secondary link URL. 969 969 */ 970 'link' => apply_filters( 'dashboard_secondary_link', __( 'http ://planet.wordpress.org/' ) ),970 'link' => apply_filters( 'dashboard_secondary_link', __( 'https://planet.wordpress.org/' ) ), 971 971 972 972 /** … … 977 977 * @param string $url The widget's secondary feed URL. 978 978 */ 979 'url' => apply_filters( 'dashboard_secondary_feed', __( 'http ://planet.wordpress.org/feed/' ) ),979 'url' => apply_filters( 'dashboard_secondary_feed', __( 'https://planet.wordpress.org/feed/' ) ), 980 980 981 981 /** -
trunk/src/wp-admin/index.php
r27469 r29787 70 70 $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>'; 71 71 if ( ! 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>'; 73 73 else 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>'; 75 75 if ( current_user_can( 'edit_theme_options' ) ) 76 76 $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.