From ba351c550fb0130faa15c3ee0f75eb3bf4c76ebc Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 24 Feb 2018 09:29:17 +0000 Subject: [PATCH] Administration: Use HTTPS for `dashboard_primary_feed` URL. `dashboard_secondary_feed` is already using HTTPS since [29787]. Props iandunn. Fixes #40416. git-svn-id: https://develop.svn.wordpress.org/trunk@42731 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/dashboard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/includes/dashboard.php b/src/wp-admin/includes/dashboard.php index 545f90630c..7701967658 100644 --- a/src/wp-admin/includes/dashboard.php +++ b/src/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.