Make WordPress Core

Changeset 29721


Ignore:
Timestamp:
09/09/2014 06:28:33 AM (11 years ago)
Author:
SergeyBiryukov
Message:

Use https for apps.wordpress.org links.

props pento.
fixes #29595 for trunk.

Location:
trunk/src
Files:
3 edited

Legend:

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

    r29703 r29721  
    17031703
    17041704    if ( ! _device_can_upload() ) {
    1705         echo '<p>' . sprintf( __('The web browser on your device cannot be used to upload files. You may be able to use the <a href="%s">native app for your device</a> instead.'), 'http://apps.wordpress.org/' ) . '</p>';
     1705        echo '<p>' . sprintf( __('The web browser on your device cannot be used to upload files. You may be able to use the <a href="%s">native app for your device</a> instead.'), 'https://apps.wordpress.org/' ) . '</p>';
    17061706        return;
    17071707    }
  • trunk/src/wp-includes/class-wp-customize-control.php

    r29703 r29721  
    743743    public function tab_upload_new() {
    744744        if ( ! _device_can_upload() ) {
    745             echo '<p>' . sprintf( __('The web browser on your device cannot be used to upload files. You may be able to use the <a href="%s">native app for your device</a> instead.'), 'http://apps.wordpress.org/' ) . '</p>';
     745            echo '<p>' . sprintf( __('The web browser on your device cannot be used to upload files. You may be able to use the <a href="%s">native app for your device</a> instead.'), 'https://apps.wordpress.org/' ) . '</p>';
    746746        } else {
    747747            ?>
  • trunk/src/wp-includes/media-template.php

    r29704 r29721  
    177177        <# } #>
    178178        <?php if ( ! _device_can_upload() ) : ?>
    179             <h3 class="upload-instructions"><?php printf( __('The web browser on your device cannot be used to upload files. You may be able to use the <a href="%s">native app for your device</a> instead.'), 'http://apps.wordpress.org/' ); ?></h3>
     179            <h3 class="upload-instructions"><?php printf( __('The web browser on your device cannot be used to upload files. You may be able to use the <a href="%s">native app for your device</a> instead.'), 'https://apps.wordpress.org/' ); ?></h3>
    180180        <?php elseif ( is_multisite() && ! is_upload_space_available() ) : ?>
    181181            <h3 class="upload-instructions"><?php _e( 'Upload Limit Exceeded' ); ?></h3>
Note: See TracChangeset for help on using the changeset viewer.