diff --git a/projects/packages/jetpack-mu-wpcom/changelog/fix-subscribe-modal-blogname-apostrophes b/projects/packages/jetpack-mu-wpcom/changelog/fix-subscribe-modal-blogname-apostrophes new file mode 100644 index 0000000000000..92af929a9b505 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/fix-subscribe-modal-blogname-apostrophes @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +Subscribe modal: fix an edge case reported by a user, where the site title shows character codes. diff --git a/projects/packages/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php b/projects/packages/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php index 397838493877c..1b57927b6f7b4 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php +++ b/projects/packages/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php @@ -223,7 +223,7 @@ public function enqueue_assets() { 'We\'ll keep you in the loop!' => __( 'We\'ll keep you in the loop!', 'jetpack-mu-wpcom' ), 'Loading your comment...' => __( 'Loading your comment...', 'jetpack-mu-wpcom' ), /* translators: %s is the name of the site */ - 'Discover more from' => sprintf( __( 'Discover more from %s', 'jetpack-mu-wpcom' ), get_bloginfo( 'name' ) ), + 'Discover more from' => sprintf( __( 'Discover more from %s', 'jetpack-mu-wpcom' ), html_entity_decode( get_bloginfo( 'name' ), ENT_QUOTES ) ), 'Subscribe now to keep reading and get access to the full archive.' => __( 'Subscribe now to keep reading and get access to the full archive.', 'jetpack-mu-wpcom' ), 'Continue reading' => __( 'Continue reading', 'jetpack-mu-wpcom' ), 'Never miss a beat!' => __( 'Never miss a beat!', 'jetpack-mu-wpcom' ),