Make WordPress Core


Ignore:
Timestamp:
06/10/2016 04:49:09 AM (9 years ago)
Author:
peterwilsoncc
Message:

DOCS: Replace HTTP links with HTTPS.

Replaces unsecure links in documentation and translator comments with their secure versions.

Props johnpgreen, netweb

Fixes #36993

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/dashboard.php

    r37537 r37674  
    836836                $relative = __( 'Tomorrow' );
    837837            } elseif ( date( 'Y', $time ) !== date( 'Y', current_time( 'timestamp' ) ) ) {
    838                 /* translators: date and time format for recent posts on the dashboard, from a different calendar year, see http://php.net/date */
     838                /* translators: date and time format for recent posts on the dashboard, from a different calendar year, see https://secure.php.net/date */
    839839                $relative = date_i18n( __( 'M jS Y' ), $time );
    840840            } else {
    841                 /* translators: date and time format for recent posts on the dashboard, see http://php.net/date */
     841                /* translators: date and time format for recent posts on the dashboard, see https://secure.php.net/date */
    842842                $relative = date_i18n( __( 'M jS' ), $time );
    843843            }
Note: See TracChangeset for help on using the changeset viewer.