diff --git a/src/license.txt b/src/license.txt index 06c105b129..e7392a053a 100644 --- a/src/license.txt +++ b/src/license.txt @@ -382,4 +382,4 @@ WRITTEN OFFER The source code for any program binaries or compressed scripts that are included with WordPress can be freely obtained at the following URL: - http://wordpress.org/download/source/ + https://wordpress.org/download/source/ diff --git a/src/readme.html b/src/readme.html index f1256761b7..3688bb3807 100644 --- a/src/readme.html +++ b/src/readme.html @@ -8,7 +8,7 @@
Semantic Personal Publishing Platform
@@ -27,7 +27,7 @@wp-config.php
file, and try again. If it fails again, please go to the support forums with as much data as you can gather.wp-config.php
file, and try again. If it fails again, please go to the support forums with as much data as you can gather.admin
.WordPress has no multi-million dollar marketing campaign or celebrity sponsors, but we do have something even better—you. If you enjoy WordPress please consider telling a friend, setting it up for someone less knowledgable than yourself, or writing the author of a media article that overlooks us.
-WordPress is the official continuation of b2/cafélog, which came from Michel V. The work has been continued by the WordPress developers. If you would like to support WordPress, please consider donating.
+WordPress is the official continuation of b2/cafélog, which came from Michel V. The work has been continued by the WordPress developers. If you would like to support WordPress, please consider donating.
WordPress is free software, and is released under the terms of the GPL version 2 or (at your option) any later version. See license.txt.
diff --git a/src/wp-admin/edit-comments.php b/src/wp-admin/edit-comments.php index b12264a02c..a573c40551 100644 --- a/src/wp-admin/edit-comments.php +++ b/src/wp-admin/edit-comments.php @@ -133,7 +133,7 @@ get_current_screen()->set_help_sidebar( '' . __( 'Documentation on Comments' ) . '
' . '' . __( 'Documentation on Comment Spam' ) . '
' . '' . __( 'Documentation on Keyboard Shortcuts' ) . '
' . - '' . __( 'Support Forums' ) . '
' + '' . __( 'Support Forums' ) . '
' ); require_once( ABSPATH . 'wp-admin/admin-header.php' ); diff --git a/src/wp-admin/edit-tags.php b/src/wp-admin/edit-tags.php index 56fa11a1c2..14b6ae57c3 100644 --- a/src/wp-admin/edit-tags.php +++ b/src/wp-admin/edit-tags.php @@ -240,7 +240,7 @@ if ( 'category' == $taxonomy || 'link_category' == $taxonomy || 'post_tag' == $t else $help .= '' . __( 'Documentation on Tags' ) . '
'; - $help .= '' . __('Support Forums') . '
'; + $help .= '' . __('Support Forums') . '
'; get_current_screen()->set_help_sidebar( $help ); diff --git a/src/wp-admin/includes/class-wp-upgrader.php b/src/wp-admin/includes/class-wp-upgrader.php index 4e1e0c256b..f5fca1c26d 100644 --- a/src/wp-admin/includes/class-wp-upgrader.php +++ b/src/wp-admin/includes/class-wp-upgrader.php @@ -2250,7 +2250,7 @@ class WP_Automatic_Updater { // Add a note about the support forums to all emails. $body .= "\n\n" . __( 'If you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.' ); - $body .= "\n" . __( 'http://wordpress.org/support/' ); + $body .= "\n" . __( 'https://wordpress.org/support/' ); // If things are successful and we're now on the latest, mention plugins and themes if any are out of date. if ( $type == 'success' && ! $newer_version_available && ( get_plugin_updates() || get_theme_updates() ) ) { @@ -2387,7 +2387,7 @@ BETA TESTING? This debugging email is sent when you are using a development version of WordPress. If you think these failures might be due to a bug in WordPress, could you report it? - * Open a thread in the support forums: http://wordpress.org/support/forum/alphabeta + * Open a thread in the support forums: https://wordpress.org/support/forum/alphabeta * Or, if you're comfortable writing a bug report: http://core.trac.wordpress.org/ Thanks! -- The WordPress Team" ); diff --git a/src/wp-admin/includes/media.php b/src/wp-admin/includes/media.php index e31edd7f49..776f310a35 100644 --- a/src/wp-admin/includes/media.php +++ b/src/wp-admin/includes/media.php @@ -1687,7 +1687,7 @@ function media_upload_form( $errors = null ) { global $type, $tab, $is_IE, $is_opera; if ( ! _device_can_upload() ) { - echo '' . sprintf( __('The web browser on your device cannot be used to upload files. You may be able to use the native app for your device instead.'), 'http://wordpress.org/mobile/' ) . '
'; + echo '' . sprintf( __('The web browser on your device cannot be used to upload files. You may be able to use the native app for your device instead.'), 'https://wordpress.org/mobile/' ) . '
'; return; } diff --git a/src/wp-admin/includes/plugin-install.php b/src/wp-admin/includes/plugin-install.php index 37d862e0f5..53362d2002 100644 --- a/src/wp-admin/includes/plugin-install.php +++ b/src/wp-admin/includes/plugin-install.php @@ -74,16 +74,16 @@ function plugins_api($action, $args = null) { $request = wp_remote_post( $url, $args ); if ( $ssl && is_wp_error( $request ) ) { - trigger_error( __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the support forums.' ) . ' ' . '(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)', headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE ); + trigger_error( __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the support forums.' ) . ' ' . '(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)', headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE ); $request = wp_remote_post( $http_url, $args ); } if ( is_wp_error($request) ) { - $res = new WP_Error('plugins_api_failed', __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the support forums.' ), $request->get_error_message() ); + $res = new WP_Error('plugins_api_failed', __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the support forums.' ), $request->get_error_message() ); } else { $res = maybe_unserialize( wp_remote_retrieve_body( $request ) ); if ( ! is_object( $res ) && ! is_array( $res ) ) - $res = new WP_Error('plugins_api_failed', __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the support forums.' ), wp_remote_retrieve_body( $request ) ); + $res = new WP_Error('plugins_api_failed', __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the support forums.' ), wp_remote_retrieve_body( $request ) ); } } elseif ( !is_wp_error($res) ) { $res->external = true; @@ -126,7 +126,7 @@ function install_popular_tags( $args = array() ) { function install_dashboard() { ?> -WordPress Plugin Directory or upload a plugin in .zip format via this page.' ), 'http://wordpress.org/plugins/', self_admin_url( 'plugin-install.php?tab=upload' ) ); ?>
+WordPress Plugin Directory or upload a plugin in .zip format via this page.' ), 'https://wordpress.org/plugins/', self_admin_url( 'plugin-install.php?tab=upload' ) ); ?>
@@ -406,7 +406,7 @@ function install_plugin_information() { downloaded) ) : ?>' . __('For more information:') . '
' . '' . __('Documentation on Creating a Network') . '
' . '' . __('Documentation on the Network Screen') . '
' . - '' . __('Support Forums') . '
' + '' . __('Support Forums') . '
' ); include( ABSPATH . 'wp-admin/admin-header.php' ); diff --git a/src/wp-admin/theme-editor.php b/src/wp-admin/theme-editor.php index 8d1775d4d6..382e594a15 100644 --- a/src/wp-admin/theme-editor.php +++ b/src/wp-admin/theme-editor.php @@ -40,7 +40,7 @@ get_current_screen()->set_help_sidebar( '' . __('Documentation on Using Themes') . '
' . '' . __('Documentation on Editing Files') . '
' . '' . __('Documentation on Template Tags') . '
' . - '' . __('Support Forums') . '
' + '' . __('Support Forums') . '
' ); wp_reset_vars( array( 'action', 'error', 'file', 'theme' ) ); diff --git a/src/wp-admin/users.php b/src/wp-admin/users.php index 2a28f74b57..6216453660 100644 --- a/src/wp-admin/users.php +++ b/src/wp-admin/users.php @@ -60,7 +60,7 @@ get_current_screen()->set_help_sidebar( '' . __('For more information:') . '
' . '' . __('Documentation on Managing Users') . '
' . '' . __('Descriptions of Roles and Capabilities') . '
' . - '' . __('Support Forums') . '
' + '' . __('Support Forums') . '
' ); if ( empty($_REQUEST) ) { diff --git a/src/wp-includes/admin-bar.php b/src/wp-includes/admin-bar.php index 67e6a1a5a7..2a5c3b1f84 100644 --- a/src/wp-includes/admin-bar.php +++ b/src/wp-includes/admin-bar.php @@ -127,7 +127,7 @@ function wp_admin_bar_wp_menu( $wp_admin_bar ) { 'parent' => 'wp-logo-external', 'id' => 'wporg', 'title' => __('WordPress.org'), - 'href' => __('http://wordpress.org/'), + 'href' => __('https://wordpress.org/'), ) ); // Add codex link @@ -143,7 +143,7 @@ function wp_admin_bar_wp_menu( $wp_admin_bar ) { 'parent' => 'wp-logo-external', 'id' => 'support-forums', 'title' => __('Support Forums'), - 'href' => __('http://wordpress.org/support/'), + 'href' => __('https://wordpress.org/support/'), ) ); // Add feedback link @@ -151,7 +151,7 @@ function wp_admin_bar_wp_menu( $wp_admin_bar ) { 'parent' => 'wp-logo-external', 'id' => 'feedback', 'title' => __('Feedback'), - 'href' => __('http://wordpress.org/support/forum/requests-and-feedback'), + 'href' => __('https://wordpress.org/support/forum/requests-and-feedback'), ) ); } diff --git a/src/wp-includes/class-wp-customize-control.php b/src/wp-includes/class-wp-customize-control.php index fde8561584..1524666684 100644 --- a/src/wp-includes/class-wp-customize-control.php +++ b/src/wp-includes/class-wp-customize-control.php @@ -593,7 +593,7 @@ class WP_Customize_Image_Control extends WP_Customize_Upload_Control { */ public function tab_upload_new() { if ( ! _device_can_upload() ) { - echo '' . sprintf( __('The web browser on your device cannot be used to upload files. You may be able to use the native app for your device instead.'), 'http://wordpress.org/mobile/' ) . '
'; + echo '' . sprintf( __('The web browser on your device cannot be used to upload files. You may be able to use the native app for your device instead.'), 'https://wordpress.org/mobile/' ) . '
'; } else { ?>WordPress'), 'http://wordpress.org/'); ?>
+WordPress'), 'https://wordpress.org/'); ?>