Make WordPress Core


Ignore:
Timestamp:
06/18/2015 03:50:42 PM (11 years ago)
Author:
obenland
Message:

Use https for Google API external libraries.

Google recommends it and users are more likely to have the https version cached in their browser already.

Props rommelxcastro.
Fixes #32552.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfourteen/functions.php

    r32116 r32843  
    216216            'subset' => urlencode( 'latin,latin-ext' ),
    217217        );
    218         $font_url = add_query_arg( $query_args, '//fonts.googleapis.com/css' );
     218        $font_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' );
    219219    }
    220220
Note: See TracChangeset for help on using the changeset viewer.