Use HTTPS URLs for trac.wordpress.org (and use core.trac.wordpress.org)

see #27115
Built from https://develop.svn.wordpress.org/trunk@29789


git-svn-id: http://core.svn.wordpress.org/trunk@29561 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Mark Jaquith 2014-09-29 13:37:16 +00:00
parent 0d3b83551f
commit e1f2b3b9e2
8 changed files with 10 additions and 10 deletions

View File

@ -4,7 +4,7 @@
*
* This set of classes are designed to be used to upgrade/install a local set of files on the filesystem via the Filesystem Abstraction classes.
*
* @link http://trac.wordpress.org/ticket/7875 consolidate plugin/theme/core upgrade/install functions
* @link https://core.trac.wordpress.org/ticket/7875 consolidate plugin/theme/core upgrade/install functions
*
* @package WordPress
* @subpackage Upgrader

View File

@ -60,8 +60,8 @@
* the file. This is not checked however and the file is only opened for
* reading.
*
* @link http://trac.wordpress.org/ticket/5651 Previous Optimizations.
* @link http://trac.wordpress.org/ticket/7372 Further and better Optimizations.
* @link https://core.trac.wordpress.org/ticket/5651 Previous Optimizations.
* @link https://core.trac.wordpress.org/ticket/7372 Further and better Optimizations.
* @since 1.5.0
*
* @param string $plugin_file Path to the plugin file

View File

@ -69,8 +69,8 @@ function redirect_canonical( $requested_url = null, $do_redirect = true ) {
return;
// Some PHP setups turn requests for / into /index.php in REQUEST_URI
// See: http://trac.wordpress.org/ticket/5017
// See: http://trac.wordpress.org/ticket/7173
// See: https://core.trac.wordpress.org/ticket/5017
// See: https://core.trac.wordpress.org/ticket/7173
// Disabled, for now:
// $original['path'] = preg_replace('|/index\.php$|', '/', $original['path']);

View File

@ -5,7 +5,7 @@
* Standardizes the HTTP requests for WordPress. Handles cookies, gzip encoding and decoding, chunk
* decoding, if HTTP 1.1 and various other difficult HTTP protocol implementations.
*
* @link http://trac.wordpress.org/ticket/4779 HTTP API Proposal
* @link https://core.trac.wordpress.org/ticket/4779 HTTP API Proposal
*
* @package WordPress
* @subpackage HTTP

View File

@ -571,7 +571,7 @@ function wp_register( $before = '<li>', $after = '</li>', $echo = true ) {
*
* @since 1.5.0
*
* @link http://trac.wordpress.org/ticket/1458 Explanation of 'wp_meta' action.
* @link https://core.trac.wordpress.org/ticket/1458 Explanation of 'wp_meta' action.
*/
function wp_meta() {
/**

View File

@ -4,7 +4,7 @@
*
* Will eventually replace and standardize the WordPress HTTP requests made.
*
* @link http://trac.wordpress.org/ticket/4779 HTTP API Proposal
* @link https://core.trac.wordpress.org/ticket/4779 HTTP API Proposal
*
* @package WordPress
* @subpackage HTTP

View File

@ -360,7 +360,7 @@ function wp_mail( $to, $subject, $message, $headers = '', $attachments = array()
* Some hosts will block outgoing mail from this address if it doesn't exist but
* there's no easy alternative. Defaulting to admin_email might appear to be another
* option but some hosts may refuse to relay mail from an unknown domain. See
* http://trac.wordpress.org/ticket/5007.
* https://core.trac.wordpress.org/ticket/5007.
*/
if ( !isset( $from_email ) ) {

View File

@ -865,7 +865,7 @@ function _wp_call_all_hook($args) {
* Functions and static method callbacks are just returned as strings and
* shouldn't have any speed penalty.
*
* @link http://trac.wordpress.org/ticket/3875
* @link https://core.trac.wordpress.org/ticket/3875
*
* @since 2.2.3
* @access private