Bundled Theme: Fix malformed Google Font URL for Twenty Twelve due to double-encoding of +

Amends [45485].
Fixes #47282.


git-svn-id: https://develop.svn.wordpress.org/trunk@45525 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Weston Ruter 2019-06-12 23:32:44 +00:00
parent 6551660d55
commit 8625ca01ec

View File

@ -165,7 +165,7 @@ function twentytwelve_get_font_url() {
}
$query_args = array(
'family' => urlencode( 'Open+Sans:400italic,700italic,400,700' ),
'family' => urlencode( 'Open Sans:400italic,700italic,400,700' ),
'subset' => urlencode( $subsets ),
'display' => urlencode( 'fallback' ),
);