Brizy – Page Builder - Version 2.2.15

Version Description

  • 2021-05-14 =
  • Fixed: html encode for the post content
Download this release

Release Info

Developer themefusecom
Plugin Icon 128x128 Brizy – Page Builder
Version 2.2.15
Comparing to
See all releases

Code changes from version 2.2.14 to 2.2.15

README.md CHANGED
@@ -3,7 +3,7 @@ Contributors: themefuse<br>
3
  Requires at least: 4.5<br>
4
  Tested up to: 5.7<br>
5
  Requires PHP: 5.6<br>
6
- Stable tag: 2.2.14<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -118,6 +118,9 @@ $bodyHtml = apply_filters( 'brizy_content', $html->get_body(), Brizy_Editor_Proj
118
 
119
  ## Changelog
120
 
 
 
 
121
  ### 2.2.14 - 2021-05-13
122
  * New: Added file upload to Post Title & excerpt
123
  * New: Added spacing option for the Icon Box element on responsive
3
  Requires at least: 4.5<br>
4
  Tested up to: 5.7<br>
5
  Requires PHP: 5.6<br>
6
+ Stable tag: 2.2.15<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
118
 
119
  ## Changelog
120
 
121
+ ### 2.2.15 - 2021-05-14
122
+ * Fixed: html encode for the post content
123
+
124
  ### 2.2.14 - 2021-05-13
125
  * New: Added file upload to Post Title & excerpt
126
  * New: Added spacing option for the Icon Box element on responsive
brizy.php CHANGED
@@ -5,7 +5,7 @@
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
- * Version: 2.2.14
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
@@ -19,7 +19,7 @@ if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && stripos( $_SERVER['HTTP_X_FO
19
 
20
  define( 'BRIZY_DEVELOPMENT', false );
21
  define( 'BRIZY_LOG', false );
22
- define( 'BRIZY_VERSION', '2.2.14' );
23
  define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '182-wp' );
24
  define( 'BRIZY_SYNC_VERSION', '182' );
25
  define( 'BRIZY_FILE', __FILE__ );
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
+ * Version: 2.2.15
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
19
 
20
  define( 'BRIZY_DEVELOPMENT', false );
21
  define( 'BRIZY_LOG', false );
22
+ define( 'BRIZY_VERSION', '2.2.15' );
23
  define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '182-wp' );
24
  define( 'BRIZY_SYNC_VERSION', '182' );
25
  define( 'BRIZY_FILE', __FILE__ );
compatibilities/yoast-seo.php CHANGED
@@ -4,7 +4,6 @@ class Brizy_Compatibilities_YoastSeo {
4
 
5
  public function __construct() {
6
  add_filter( 'wpseo_twitter_image', array( $this, 'wpseo_twitter_image' ) );
7
- add_filter( 'brizy_html_entity_decode', '__return_false' );
8
  }
9
 
10
  /**
4
 
5
  public function __construct() {
6
  add_filter( 'wpseo_twitter_image', array( $this, 'wpseo_twitter_image' ) );
 
7
  }
8
 
9
  /**
content/main-processor.php CHANGED
@@ -46,10 +46,7 @@ class Brizy_Content_MainProcessor {
46
  */
47
  public function process( $content ) {
48
 
49
- if ( apply_filters( 'brizy_html_entity_decode', true ) ) {
50
- $content = html_entity_decode( $content, ENT_QUOTES | ENT_HTML5, get_bloginfo( 'charset' ) );
51
- }
52
-
53
  $processors = apply_filters( 'brizy_apply_content_processors', $this->processors );
54
 
55
  foreach ( $processors as $processor ) {
46
  */
47
  public function process( $content ) {
48
 
49
+ $content = html_entity_decode( $content, ENT_QUOTES | ENT_HTML5, get_bloginfo( 'charset' ) );
 
 
 
50
  $processors = apply_filters( 'brizy_apply_content_processors', $this->processors );
51
 
52
  foreach ( $processors as $processor ) {
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: page builder, website builder, brizy, editor, visual editor, unyson, wysiw
4
  Requires at least: 4.5
5
  Tested up to: 5.7
6
  Requires PHP: 5.6
7
- Stable tag: 2.2.14
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -133,6 +133,9 @@ Don't worry if you make a mistake or delete something that you shouldn't have. W
133
 
134
  == Changelog ==
135
 
 
 
 
136
  = 2.2.14 - 2021-05-13 =
137
  * New: Added file upload to Post Title & excerpt
138
  * New: Added spacing option for the Icon Box element on responsive
4
  Requires at least: 4.5
5
  Tested up to: 5.7
6
  Requires PHP: 5.6
7
+ Stable tag: 2.2.15
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
133
 
134
  == Changelog ==
135
 
136
+ = 2.2.15 - 2021-05-14 =
137
+ * Fixed: html encode for the post content
138
+
139
  = 2.2.14 - 2021-05-13 =
140
  * New: Added file upload to Post Title & excerpt
141
  * New: Added spacing option for the Icon Box element on responsive
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit08c4b2ab129135a9196e4ea8e7490223::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInitbf11a338d507ea6745de52a0099ffaea::getLoader();
vendor/composer/InstalledVersions.php CHANGED
@@ -30,7 +30,7 @@ private static $installed = array (
30
  'aliases' =>
31
  array (
32
  ),
33
- 'reference' => 'ea8ba36259428ac783483bc0617301052414d4eb',
34
  'name' => 'brizy/brizy',
35
  ),
36
  'versions' =>
@@ -60,7 +60,7 @@ private static $installed = array (
60
  'aliases' =>
61
  array (
62
  ),
63
- 'reference' => 'ea8ba36259428ac783483bc0617301052414d4eb',
64
  ),
65
  'enshrined/svg-sanitize' =>
66
  array (
30
  'aliases' =>
31
  array (
32
  ),
33
+ 'reference' => '5c34dbde5eaba1e9632002f43ee8a7917650bc66',
34
  'name' => 'brizy/brizy',
35
  ),
36
  'versions' =>
60
  'aliases' =>
61
  array (
62
  ),
63
+ 'reference' => '5c34dbde5eaba1e9632002f43ee8a7917650bc66',
64
  ),
65
  'enshrined/svg-sanitize' =>
66
  array (
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit08c4b2ab129135a9196e4ea8e7490223
6
  {
7
  private static $loader;
8
 
@@ -22,15 +22,15 @@ class ComposerAutoloaderInit08c4b2ab129135a9196e4ea8e7490223
22
  return self::$loader;
23
  }
24
 
25
- spl_autoload_register(array('ComposerAutoloaderInit08c4b2ab129135a9196e4ea8e7490223', 'loadClassLoader'), true, true);
26
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
27
- spl_autoload_unregister(array('ComposerAutoloaderInit08c4b2ab129135a9196e4ea8e7490223', 'loadClassLoader'));
28
 
29
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
30
  if ($useStaticLoader) {
31
  require __DIR__ . '/autoload_static.php';
32
 
33
- call_user_func(\Composer\Autoload\ComposerStaticInit08c4b2ab129135a9196e4ea8e7490223::getInitializer($loader));
34
  } else {
35
  $map = require __DIR__ . '/autoload_namespaces.php';
36
  foreach ($map as $namespace => $path) {
@@ -51,19 +51,19 @@ class ComposerAutoloaderInit08c4b2ab129135a9196e4ea8e7490223
51
  $loader->register(true);
52
 
53
  if ($useStaticLoader) {
54
- $includeFiles = Composer\Autoload\ComposerStaticInit08c4b2ab129135a9196e4ea8e7490223::$files;
55
  } else {
56
  $includeFiles = require __DIR__ . '/autoload_files.php';
57
  }
58
  foreach ($includeFiles as $fileIdentifier => $file) {
59
- composerRequire08c4b2ab129135a9196e4ea8e7490223($fileIdentifier, $file);
60
  }
61
 
62
  return $loader;
63
  }
64
  }
65
 
66
- function composerRequire08c4b2ab129135a9196e4ea8e7490223($fileIdentifier, $file)
67
  {
68
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
69
  require $file;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInitbf11a338d507ea6745de52a0099ffaea
6
  {
7
  private static $loader;
8
 
22
  return self::$loader;
23
  }
24
 
25
+ spl_autoload_register(array('ComposerAutoloaderInitbf11a338d507ea6745de52a0099ffaea', 'loadClassLoader'), true, true);
26
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
27
+ spl_autoload_unregister(array('ComposerAutoloaderInitbf11a338d507ea6745de52a0099ffaea', 'loadClassLoader'));
28
 
29
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
30
  if ($useStaticLoader) {
31
  require __DIR__ . '/autoload_static.php';
32
 
33
+ call_user_func(\Composer\Autoload\ComposerStaticInitbf11a338d507ea6745de52a0099ffaea::getInitializer($loader));
34
  } else {
35
  $map = require __DIR__ . '/autoload_namespaces.php';
36
  foreach ($map as $namespace => $path) {
51
  $loader->register(true);
52
 
53
  if ($useStaticLoader) {
54
+ $includeFiles = Composer\Autoload\ComposerStaticInitbf11a338d507ea6745de52a0099ffaea::$files;
55
  } else {
56
  $includeFiles = require __DIR__ . '/autoload_files.php';
57
  }
58
  foreach ($includeFiles as $fileIdentifier => $file) {
59
+ composerRequirebf11a338d507ea6745de52a0099ffaea($fileIdentifier, $file);
60
  }
61
 
62
  return $loader;
63
  }
64
  }
65
 
66
+ function composerRequirebf11a338d507ea6745de52a0099ffaea($fileIdentifier, $file)
67
  {
68
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
69
  require $file;
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInit08c4b2ab129135a9196e4ea8e7490223
8
  {
9
  public static $files = array (
10
  '6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',
@@ -116,10 +116,10 @@ class ComposerStaticInit08c4b2ab129135a9196e4ea8e7490223
116
  public static function getInitializer(ClassLoader $loader)
117
  {
118
  return \Closure::bind(function () use ($loader) {
119
- $loader->prefixLengthsPsr4 = ComposerStaticInit08c4b2ab129135a9196e4ea8e7490223::$prefixLengthsPsr4;
120
- $loader->prefixDirsPsr4 = ComposerStaticInit08c4b2ab129135a9196e4ea8e7490223::$prefixDirsPsr4;
121
- $loader->prefixesPsr0 = ComposerStaticInit08c4b2ab129135a9196e4ea8e7490223::$prefixesPsr0;
122
- $loader->classMap = ComposerStaticInit08c4b2ab129135a9196e4ea8e7490223::$classMap;
123
 
124
  }, null, ClassLoader::class);
125
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInitbf11a338d507ea6745de52a0099ffaea
8
  {
9
  public static $files = array (
10
  '6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',
116
  public static function getInitializer(ClassLoader $loader)
117
  {
118
  return \Closure::bind(function () use ($loader) {
119
+ $loader->prefixLengthsPsr4 = ComposerStaticInitbf11a338d507ea6745de52a0099ffaea::$prefixLengthsPsr4;
120
+ $loader->prefixDirsPsr4 = ComposerStaticInitbf11a338d507ea6745de52a0099ffaea::$prefixDirsPsr4;
121
+ $loader->prefixesPsr0 = ComposerStaticInitbf11a338d507ea6745de52a0099ffaea::$prefixesPsr0;
122
+ $loader->classMap = ComposerStaticInitbf11a338d507ea6745de52a0099ffaea::$classMap;
123
 
124
  }, null, ClassLoader::class);
125
  }
vendor/composer/installed.php CHANGED
@@ -6,7 +6,7 @@
6
  'aliases' =>
7
  array (
8
  ),
9
- 'reference' => 'ea8ba36259428ac783483bc0617301052414d4eb',
10
  'name' => 'brizy/brizy',
11
  ),
12
  'versions' =>
@@ -36,7 +36,7 @@
36
  'aliases' =>
37
  array (
38
  ),
39
- 'reference' => 'ea8ba36259428ac783483bc0617301052414d4eb',
40
  ),
41
  'enshrined/svg-sanitize' =>
42
  array (
6
  'aliases' =>
7
  array (
8
  ),
9
+ 'reference' => '5c34dbde5eaba1e9632002f43ee8a7917650bc66',
10
  'name' => 'brizy/brizy',
11
  ),
12
  'versions' =>
36
  'aliases' =>
37
  array (
38
  ),
39
+ 'reference' => '5c34dbde5eaba1e9632002f43ee8a7917650bc66',
40
  ),
41
  'enshrined/svg-sanitize' =>
42
  array (