From 8625ca01ec0c7a658ecd57b4ca246faa2a985491 Mon Sep 17 00:00:00 2001 From: Weston Ruter Date: Wed, 12 Jun 2019 23:32:44 +0000 Subject: [PATCH] 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 --- src/wp-content/themes/twentytwelve/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-content/themes/twentytwelve/functions.php b/src/wp-content/themes/twentytwelve/functions.php index 2a31155990..53f6997104 100644 --- a/src/wp-content/themes/twentytwelve/functions.php +++ b/src/wp-content/themes/twentytwelve/functions.php @@ -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' ), );