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/theme-editor.php

    r37488 r37674  
    113113    $location = 'theme-editor.php?file=' . urlencode( $relative_file ) . '&theme=' . urlencode( $stylesheet ) . '&scrollto=' . $scrollto;
    114114    if ( is_writeable( $file ) ) {
    115         // is_writable() not always reliable, check return value. see comments @ http://uk.php.net/is_writable
     115        // is_writable() not always reliable, check return value. see comments @ https://secure.php.net/is_writable
    116116        $f = fopen( $file, 'w+' );
    117117        if ( $f !== false ) {
Note: See TracChangeset for help on using the changeset viewer.