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-includes/locale.php

    r37431 r37674  
    185185
    186186        // Numbers formatting
    187         // See http://php.net/number_format
    188 
    189         /* translators: $thousands_sep argument for http://php.net/number_format, default is , */
     187        // See https://secure.php.net/number_format
     188
     189        /* translators: $thousands_sep argument for https://secure.php.net/number_format, default is , */
    190190        $thousands_sep = __( 'number_format_thousands_sep' );
    191191
     
    200200        $this->number_format['thousands_sep'] = ( 'number_format_thousands_sep' === $thousands_sep ) ? ',' : $thousands_sep;
    201201
    202         /* translators: $dec_point argument for http://php.net/number_format, default is . */
     202        /* translators: $dec_point argument for https://secure.php.net/number_format, default is . */
    203203        $decimal_point = __( 'number_format_decimal_point' );
    204204
     
    386386     */
    387387    public function _strings_for_pot() {
    388         /* translators: localized date format, see http://php.net/date */
     388        /* translators: localized date format, see https://secure.php.net/date */
    389389        __( 'F j, Y' );
    390         /* translators: localized time format, see http://php.net/date */
     390        /* translators: localized time format, see https://secure.php.net/date */
    391391        __( 'g:i a' );
    392         /* translators: localized date and time format, see http://php.net/date */
     392        /* translators: localized date and time format, see https://secure.php.net/date */
    393393        __( 'F j, Y g:i a' );
    394394    }
Note: See TracChangeset for help on using the changeset viewer.