Index: src/wp-admin/freedoms.php
===================================================================
--- src/wp-admin/freedoms.php	(revision 40916)
+++ src/wp-admin/freedoms.php	(working copy)
@@ -38,7 +38,7 @@
 	<li><p><?php _e( 'You have the freedom to distribute copies of your modified versions to others. By doing this you can give the whole community a chance to benefit from your changes.' ); ?></p></li>
 </ol>
 
-<p><?php printf( __( 'WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We&#8217;re flattered every time someone spreads the good word, just make sure to <a href="%s">check out our trademark guidelines</a> first.' ), 'http://wordpressfoundation.org/trademark-policy/' ); ?></p>
+<p><?php printf( __( 'WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We&#8217;re flattered every time someone spreads the good word, just make sure to <a href="%s">check out our trademark guidelines</a> first.' ), 'https://wordpressfoundation.org/trademark-policy/' ); ?></p>
 
 <p><?php
 
Index: src/wp-admin/includes/dashboard.php
===================================================================
--- src/wp-admin/includes/dashboard.php	(revision 40916)
+++ src/wp-admin/includes/dashboard.php	(working copy)
@@ -1459,7 +1459,7 @@
 		}
 		$notice .= "<p class='browser-update-nag{$browser_nag_class}'>{$msg}</p>";
 
-		$browsehappy = 'http://browsehappy.com/';
+		$browsehappy = 'https://browsehappy.com/';
 		$locale = get_user_locale();
 		if ( 'en_US' !== $locale )
 			$browsehappy = add_query_arg( 'locale', $locale, $browsehappy );
Index: src/wp-content/themes/twentysixteen/functions.php
===================================================================
--- src/wp-content/themes/twentysixteen/functions.php	(revision 40916)
+++ src/wp-content/themes/twentysixteen/functions.php	(working copy)
@@ -78,7 +78,7 @@
 	/*
 	 * Enable support for Post Thumbnails on posts and pages.
 	 *
-	 * @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails
+	 * @link https://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails
 	 */
 	add_theme_support( 'post-thumbnails' );
 	set_post_thumbnail_size( 1200, 9999 );
Index: src/wp-content/themes/twentysixteen/index.php
===================================================================
--- src/wp-content/themes/twentysixteen/index.php	(revision 40916)
+++ src/wp-content/themes/twentysixteen/index.php	(working copy)
@@ -7,7 +7,7 @@
  * It is used to display a page when nothing more specific matches a query.
  * E.g., it puts together the home page when no home.php file exists.
  *
- * @link http://codex.wordpress.org/Template_Hierarchy
+ * @link https://codex.wordpress.org/Template_Hierarchy
  *
  * @package WordPress
  * @subpackage Twenty_Sixteen
Index: src/wp-includes/class-wp-hook.php
===================================================================
--- src/wp-includes/class-wp-hook.php	(revision 40916)
+++ src/wp-includes/class-wp-hook.php	(working copy)
@@ -407,7 +407,7 @@
 	 * @since 4.7.0
 	 * @access public
 	 *
-	 * @link http://php.net/manual/en/arrayaccess.offsetexists.php
+	 * @link https://secure.php.net/manual/en/arrayaccess.offsetexists.php
 	 *
 	 * @param mixed $offset An offset to check for.
 	 * @return bool True if the offset exists, false otherwise.
@@ -422,7 +422,7 @@
 	 * @since 4.7.0
 	 * @access public
 	 *
-	 * @link http://php.net/manual/en/arrayaccess.offsetget.php
+	 * @link https://secure.php.net/manual/en/arrayaccess.offsetget.php
 	 *
 	 * @param mixed $offset The offset to retrieve.
 	 * @return mixed If set, the value at the specified offset, null otherwise.
@@ -437,7 +437,7 @@
 	 * @since 4.7.0
 	 * @access public
 	 *
-	 * @link http://php.net/manual/en/arrayaccess.offsetset.php
+	 * @link https://secure.php.net/manual/en/arrayaccess.offsetset.php
 	 *
 	 * @param mixed $offset The offset to assign the value to.
 	 * @param mixed $value The value to set.
@@ -456,7 +456,7 @@
 	 * @since 4.7.0
 	 * @access public
 	 *
-	 * @link http://php.net/manual/en/arrayaccess.offsetunset.php
+	 * @link https://secure.php.net/manual/en/arrayaccess.offsetunset.php
 	 *
 	 * @param mixed $offset The offset to unset.
 	 */
@@ -470,7 +470,7 @@
 	 * @since 4.7.0
 	 * @access public
 	 *
-	 * @link http://php.net/manual/en/iterator.current.php
+	 * @link https://secure.php.net/manual/en/iterator.current.php
 	 *
 	 * @return array Of callbacks at current priority.
 	 */
@@ -484,7 +484,7 @@
 	 * @since 4.7.0
 	 * @access public
 	 *
-	 * @link http://php.net/manual/en/iterator.next.php
+	 * @link https://secure.php.net/manual/en/iterator.next.php
 	 *
 	 * @return array Of callbacks at next priority.
 	 */
@@ -498,7 +498,7 @@
 	 * @since 4.7.0
 	 * @access public
 	 *
-	 * @link http://php.net/manual/en/iterator.key.php
+	 * @link https://secure.php.net/manual/en/iterator.key.php
 	 *
 	 * @return mixed Returns current priority on success, or NULL on failure
 	 */
@@ -512,7 +512,7 @@
 	 * @since 4.7.0
 	 * @access public
 	 *
-	 * @link http://php.net/manual/en/iterator.valid.php
+	 * @link https://secure.php.net/manual/en/iterator.valid.php
 	 *
 	 * @return boolean
 	 */
@@ -526,7 +526,7 @@
 	 * @since 4.7.0
 	 * @access public
 	 *
-	 * @link http://php.net/manual/en/iterator.rewind.php
+	 * @link https://secure.php.net/manual/en/iterator.rewind.php
 	 */
 	public function rewind() {
 		reset( $this->callbacks );
Index: src/wp-includes/http.php
===================================================================
--- src/wp-includes/http.php	(revision 40916)
+++ src/wp-includes/http.php	(working copy)
@@ -647,7 +647,7 @@
  * @param int    $component The specific component to retrieve. Use one of the PHP
  *                          predefined constants to specify which one.
  *                          Defaults to -1 (= return all parts as an array).
- *                          @see http://php.net/manual/en/function.parse-url.php
+ *                          @see https://secure.php.net/manual/en/function.parse-url.php
  * @return mixed False on parse failure; Array of URL components on success;
  *               When a specific component has been requested: null if the component
  *               doesn't exist in the given URL; a string or - in the case of
@@ -692,7 +692,7 @@
  * @param int    $component The specific component to retrieve. Use one of the PHP
  *                          predefined constants to specify which one.
  *                          Defaults to -1 (= return all parts as an array).
- *                          @see http://php.net/manual/en/function.parse-url.php
+ *                          @see https://secure.php.net/manual/en/function.parse-url.php
  * @return mixed False on parse failure; Array of URL components on success;
  *               When a specific component has been requested: null if the component
  *               doesn't exist in the given URL; a string or - in the case of
@@ -718,7 +718,7 @@
  *
  * @since 4.7.0
  *
- * @see   http://php.net/manual/en/url.constants.php
+ * @see   https://secure.php.net/manual/en/url.constants.php
  *
  * @param int $constant PHP_URL_* constant.
  * @return string|bool The named key or false.
Index: src/wp-includes/script-loader.php
===================================================================
--- src/wp-includes/script-loader.php	(revision 40916)
+++ src/wp-includes/script-loader.php	(working copy)
@@ -956,7 +956,7 @@
  *
  * @since 4.6.0
  *
- * @link http://api.jqueryui.com/datepicker/#options
+ * @link https://api.jqueryui.com/datepicker/#options
  *
  * @global WP_Locale $wp_locale The WordPress date and time locale object.
  */
