Google Fonts for WordPress - Version 3.0.3

Version Description

Download this release

Release Info

Developer DannyCooper
Plugin Icon 128x128 Google Fonts for WordPress
Version 3.0.3
Comparing to
See all releases

Code changes from version 3.0.2 to 3.0.3

blocks/init.php CHANGED
@@ -138,8 +138,8 @@ function olympus_google_fonts_block_render( $attributes ) {
138
  }
139
 
140
  $output .= '<' . $block_type . ' class="fonts-plugin-block" style="' . esc_attr( $style ) . '">';
141
- $output .= wp_kses_post( $content );
142
  $output .= '</' . $block_type . '>';
143
 
144
- return $output;
145
  }
138
  }
139
 
140
  $output .= '<' . $block_type . ' class="fonts-plugin-block" style="' . esc_attr( $style ) . '">';
141
+ $output .= $content;
142
  $output .= '</' . $block_type . '>';
143
 
144
+ return wp_kses_post( $output );
145
  }
changelog.txt CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  = 3.0.2 =
2
 
3
  * Update fonts list in Gutenberg
1
+ = 3.0.3 =
2
+
3
+ * Security hardening
4
+
5
  = 3.0.2 =
6
 
7
  * Update fonts list in Gutenberg
class-olympus-google-fonts.php CHANGED
@@ -39,7 +39,7 @@ class Olympus_Google_Fonts {
39
  */
40
  public function constants() {
41
  if ( ! defined( 'OGF_VERSION' ) ) {
42
- define( 'OGF_VERSION', '3.0.2' );
43
  }
44
 
45
  if ( ! defined( 'OGF_DIR_PATH' ) ) {
39
  */
40
  public function constants() {
41
  if ( ! defined( 'OGF_VERSION' ) ) {
42
+ define( 'OGF_VERSION', '3.0.3' );
43
  }
44
 
45
  if ( ! defined( 'OGF_DIR_PATH' ) ) {
olympus-google-fonts.php CHANGED
@@ -5,7 +5,7 @@
5
  * Plugin Name: Fonts Plugin | Google Fonts Typography
6
  * Plugin URI: https://wordpress.org/plugins/olympus-google-fonts/
7
  * Description: The easiest to use Google Fonts typography plugin. No coding required. 1000+ font choices.
8
- * Version: 3.0.2
9
  * Author: Fonts Plugin
10
  * Author URI: https://fontsplugin.com/?utm_source=wporg&utm_medium=readme&utm_campaign=description
11
  * Text Domain: olympus-google-fonts
5
  * Plugin Name: Fonts Plugin | Google Fonts Typography
6
  * Plugin URI: https://wordpress.org/plugins/olympus-google-fonts/
7
  * Description: The easiest to use Google Fonts typography plugin. No coding required. 1000+ font choices.
8
+ * Version: 3.0.3
9
  * Author: Fonts Plugin
10
  * Author URI: https://fontsplugin.com/?utm_source=wporg&utm_medium=readme&utm_campaign=description
11
  * Text Domain: olympus-google-fonts
readme.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: https://fontsplugin.com/#pricing
5
  Requires at least: 4.0
6
  Tested up to: 5.8
7
  License: GPLv2 or later
8
- Stable tag: 3.0.2
9
 
10
  The easiest to use Google Fonts Typography Plugin. No coding required. 1000+ font choices.
11
 
5
  Requires at least: 4.0
6
  Tested up to: 5.8
7
  License: GPLv2 or later
8
+ Stable tag: 3.0.3
9
 
10
  The easiest to use Google Fonts Typography Plugin. No coding required. 1000+ font choices.
11