Skip to content

Commit be8a0c6

Browse files
committed
Use HTTPS URLs for trac.wordpress.org (and use core.trac.wordpress.org)
see #27115 git-svn-id: https://develop.svn.wordpress.org/trunk@29789 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 7063377 commit be8a0c6

11 files changed

Lines changed: 13 additions & 13 deletions

File tree

src/wp-admin/includes/class-wp-upgrader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* 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.
66
*
7-
* @link http://trac.wordpress.org/ticket/7875 consolidate plugin/theme/core upgrade/install functions
7+
* @link https://core.trac.wordpress.org/ticket/7875 consolidate plugin/theme/core upgrade/install functions
88
*
99
* @package WordPress
1010
* @subpackage Upgrader

src/wp-admin/includes/plugin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@
6060
* the file. This is not checked however and the file is only opened for
6161
* reading.
6262
*
63-
* @link http://trac.wordpress.org/ticket/5651 Previous Optimizations.
64-
* @link http://trac.wordpress.org/ticket/7372 Further and better Optimizations.
63+
* @link https://core.trac.wordpress.org/ticket/5651 Previous Optimizations.
64+
* @link https://core.trac.wordpress.org/ticket/7372 Further and better Optimizations.
6565
* @since 1.5.0
6666
*
6767
* @param string $plugin_file Path to the plugin file

src/wp-includes/canonical.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ function redirect_canonical( $requested_url = null, $do_redirect = true ) {
6969
return;
7070

7171
// Some PHP setups turn requests for / into /index.php in REQUEST_URI
72-
// See: http://trac.wordpress.org/ticket/5017
73-
// See: http://trac.wordpress.org/ticket/7173
72+
// See: https://core.trac.wordpress.org/ticket/5017
73+
// See: https://core.trac.wordpress.org/ticket/7173
7474
// Disabled, for now:
7575
// $original['path'] = preg_replace('|/index\.php$|', '/', $original['path']);
7676

src/wp-includes/class-http.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Standardizes the HTTP requests for WordPress. Handles cookies, gzip encoding and decoding, chunk
66
* decoding, if HTTP 1.1 and various other difficult HTTP protocol implementations.
77
*
8-
* @link http://trac.wordpress.org/ticket/4779 HTTP API Proposal
8+
* @link https://core.trac.wordpress.org/ticket/4779 HTTP API Proposal
99
*
1010
* @package WordPress
1111
* @subpackage HTTP

src/wp-includes/general-template.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ function wp_register( $before = '<li>', $after = '</li>', $echo = true ) {
571571
*
572572
* @since 1.5.0
573573
*
574-
* @link http://trac.wordpress.org/ticket/1458 Explanation of 'wp_meta' action.
574+
* @link https://core.trac.wordpress.org/ticket/1458 Explanation of 'wp_meta' action.
575575
*/
576576
function wp_meta() {
577577
/**

src/wp-includes/http.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Will eventually replace and standardize the WordPress HTTP requests made.
66
*
7-
* @link http://trac.wordpress.org/ticket/4779 HTTP API Proposal
7+
* @link https://core.trac.wordpress.org/ticket/4779 HTTP API Proposal
88
*
99
* @package WordPress
1010
* @subpackage HTTP

src/wp-includes/pluggable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ function wp_mail( $to, $subject, $message, $headers = '', $attachments = array()
360360
* Some hosts will block outgoing mail from this address if it doesn't exist but
361361
* there's no easy alternative. Defaulting to admin_email might appear to be another
362362
* option but some hosts may refuse to relay mail from an unknown domain. See
363-
* http://trac.wordpress.org/ticket/5007.
363+
* https://core.trac.wordpress.org/ticket/5007.
364364
*/
365365

366366
if ( !isset( $from_email ) ) {

src/wp-includes/plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,7 @@ function _wp_call_all_hook($args) {
865865
* Functions and static method callbacks are just returned as strings and
866866
* shouldn't have any speed penalty.
867867
*
868-
* @link http://trac.wordpress.org/ticket/3875
868+
* @link https://core.trac.wordpress.org/ticket/3875
869869
*
870870
* @since 2.2.3
871871
* @access private

tests/phpunit/includes/wp-profiler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ function _query_summary($queries, &$out) {
148148
}
149149

150150
function _query_count($queries) {
151-
// this requires the savequeries patch at http://trac.wordpress.org/ticket/5218
151+
// this requires the savequeries patch at https://core.trac.wordpress.org/ticket/5218
152152
$out = array();
153153
foreach ($queries as $q) {
154154
if (empty($q[2]))

tests/phpunit/tests/image/meta.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function test_exif_fuji() {
8787
*/
8888
function test_exif_error() {
8989

90-
// http://trac.wordpress.org/ticket/6571
90+
// https://core.trac.wordpress.org/ticket/6571
9191
// this triggers a warning mesage when reading the exif block
9292
$out = wp_read_image_metadata(DIR_TESTDATA.'/images/waffles.jpg');
9393

0 commit comments

Comments
 (0)