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

Amends [45485].
Fixes #47282.

Built from https://develop.svn.wordpress.org/trunk@45525


git-svn-id: http://core.svn.wordpress.org/trunk@45336 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Weston Ruter 2019-06-12 23:33:50 +00:00
parent b8920e6502
commit 1eee82c903
1 changed files with 1 additions and 1 deletions

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' ),
);