From fc5617e7febca3f012441cc97fb947978de90b79 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 24 Feb 2018 09:30:33 +0000 Subject: [PATCH] Administration: Use HTTPS for `dashboard_primary_feed` URL. `dashboard_secondary_feed` is already using HTTPS since [29787]. Props iandunn. Fixes #40416. Built from https://develop.svn.wordpress.org/trunk@42731 git-svn-id: http://core.svn.wordpress.org/trunk@42561 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/dashboard.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index 545f90630c..7701967658 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -1330,7 +1330,7 @@ function wp_dashboard_primary() { * * @param string $url The widget's primary feed URL. */ - 'url' => apply_filters( 'dashboard_primary_feed', __( 'http://wordpress.org/news/feed/' ) ), + 'url' => apply_filters( 'dashboard_primary_feed', __( 'https://wordpress.org/news/feed/' ) ), /** * Filters the primary link title for the 'WordPress News' dashboard widget. diff --git a/wp-includes/version.php b/wp-includes/version.php index 57569a6fa0..d279063d66 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-42730'; +$wp_version = '5.0-alpha-42731'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.