Brizy – Page Builder - Version 2.0.16

Version Description

  • 2020-10-29 =
  • Fixed: Page content extractor
Download this release

Release Info

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

Code changes from version 2.0.15 to 2.0.16

README.md CHANGED
@@ -3,7 +3,7 @@ Contributors: themefuse<br>
3
  Requires at least: 4.5<br>
4
  Tested up to: 5.5<br>
5
  Requires PHP: 5.6<br>
6
- Stable tag: 2.0.15<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.0.15 - 2020-10-28
122
  * Improved: PlainText editor (used in Button, Accordion, Tabs, etc) now accepts copy / paste
123
  * Improved: The Sync with Brizy Cloud Popup is now less annoying
3
  Requires at least: 4.5<br>
4
  Tested up to: 5.5<br>
5
  Requires PHP: 5.6<br>
6
+ Stable tag: 2.0.16<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
118
 
119
  ## Changelog
120
 
121
+ ### 2.0.16 - 2020-10-29
122
+ * Fixed: Page content extractor
123
+
124
  ### 2.0.15 - 2020-10-28
125
  * Improved: PlainText editor (used in Button, Accordion, Tabs, etc) now accepts copy / paste
126
  * Improved: The Sync with Brizy Cloud Popup is now less annoying
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.0.15
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.0.15' );
23
  define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '156-wp' );
24
  define( 'BRIZY_SYNC_VERSION', '156' );
25
  define( 'BRIZY_FILE', __FILE__ );
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
+ * Version: 2.0.16
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.0.16' );
23
  define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '156-wp' );
24
  define( 'BRIZY_SYNC_VERSION', '156' );
25
  define( 'BRIZY_FILE', __FILE__ );
editor/helper/dom.php CHANGED
@@ -7,7 +7,7 @@ class Brizy_Editor_Helper_Dom extends Brizy_Editor_Helper_DomTag {
7
  * @return Brizy_Editor_Helper_DomTag
8
  */
9
  public function get_head() {
10
- $headPos = strpos( $this->get_html(), "<head>" );
11
  $headEndPos = strpos( $this->get_html(), "</head>" );
12
  $headString = substr( $this->get_html(), $headPos, $headEndPos - $headPos + 7 );
13
 
@@ -19,7 +19,7 @@ class Brizy_Editor_Helper_Dom extends Brizy_Editor_Helper_DomTag {
19
  */
20
  public function get_body() {
21
 
22
- $bodyPos = strpos( $this->get_html(), "<body>" );
23
  $bodyEndPos = strpos( $this->get_html(), "</body>" );
24
  $bodyString = substr( $this->get_html(), $bodyPos, $bodyEndPos - $bodyPos + 7 );
25
 
7
  * @return Brizy_Editor_Helper_DomTag
8
  */
9
  public function get_head() {
10
+ $headPos = strpos( $this->get_html(), "<head" );
11
  $headEndPos = strpos( $this->get_html(), "</head>" );
12
  $headString = substr( $this->get_html(), $headPos, $headEndPos - $headPos + 7 );
13
 
19
  */
20
  public function get_body() {
21
 
22
+ $bodyPos = strpos( $this->get_html(), "<body" );
23
  $bodyEndPos = strpos( $this->get_html(), "</body>" );
24
  $bodyString = substr( $this->get_html(), $bodyPos, $bodyEndPos - $bodyPos + 7 );
25
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: brizy, page builder, editor, visual editor, unyson, wysiwyg, landing page,
4
  Requires at least: 4.5
5
  Tested up to: 5.5
6
  Requires PHP: 5.6
7
- Stable tag: 2.0.15
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -139,6 +139,9 @@ The progress you're making while building your page is always backed up in the c
139
 
140
  == Changelog ==
141
 
 
 
 
142
  = 2.0.15 - 2020-10-28 =
143
  * Improved: PlainText editor (used in Button, Accordion, Tabs, etc) now accepts copy / paste
144
  * Improved: The Sync with Brizy Cloud Popup is now less annoying
4
  Requires at least: 4.5
5
  Tested up to: 5.5
6
  Requires PHP: 5.6
7
+ Stable tag: 2.0.16
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
139
 
140
  == Changelog ==
141
 
142
+ = 2.0.16 - 2020-10-29 =
143
+ * Fixed: Page content extractor
144
+
145
  = 2.0.15 - 2020-10-28 =
146
  * Improved: PlainText editor (used in Button, Accordion, Tabs, etc) now accepts copy / paste
147
  * Improved: The Sync with Brizy Cloud Popup is now less annoying
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInitd5f79a74687fb8d5b9e2f9d07f5351cc::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit7c43393075e296f0ab31d7e4c8c70695::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInitd5f79a74687fb8d5b9e2f9d07f5351cc
6
  {
7
  private static $loader;
8
 
@@ -22,15 +22,15 @@ class ComposerAutoloaderInitd5f79a74687fb8d5b9e2f9d07f5351cc
22
  return self::$loader;
23
  }
24
 
25
- spl_autoload_register(array('ComposerAutoloaderInitd5f79a74687fb8d5b9e2f9d07f5351cc', 'loadClassLoader'), true, true);
26
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
27
- spl_autoload_unregister(array('ComposerAutoloaderInitd5f79a74687fb8d5b9e2f9d07f5351cc', '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_once __DIR__ . '/autoload_static.php';
32
 
33
- call_user_func(\Composer\Autoload\ComposerStaticInitd5f79a74687fb8d5b9e2f9d07f5351cc::getInitializer($loader));
34
  } else {
35
  $map = require __DIR__ . '/autoload_namespaces.php';
36
  foreach ($map as $namespace => $path) {
@@ -51,19 +51,19 @@ class ComposerAutoloaderInitd5f79a74687fb8d5b9e2f9d07f5351cc
51
  $loader->register(true);
52
 
53
  if ($useStaticLoader) {
54
- $includeFiles = Composer\Autoload\ComposerStaticInitd5f79a74687fb8d5b9e2f9d07f5351cc::$files;
55
  } else {
56
  $includeFiles = require __DIR__ . '/autoload_files.php';
57
  }
58
  foreach ($includeFiles as $fileIdentifier => $file) {
59
- composerRequired5f79a74687fb8d5b9e2f9d07f5351cc($fileIdentifier, $file);
60
  }
61
 
62
  return $loader;
63
  }
64
  }
65
 
66
- function composerRequired5f79a74687fb8d5b9e2f9d07f5351cc($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 ComposerAutoloaderInit7c43393075e296f0ab31d7e4c8c70695
6
  {
7
  private static $loader;
8
 
22
  return self::$loader;
23
  }
24
 
25
+ spl_autoload_register(array('ComposerAutoloaderInit7c43393075e296f0ab31d7e4c8c70695', 'loadClassLoader'), true, true);
26
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
27
+ spl_autoload_unregister(array('ComposerAutoloaderInit7c43393075e296f0ab31d7e4c8c70695', '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_once __DIR__ . '/autoload_static.php';
32
 
33
+ call_user_func(\Composer\Autoload\ComposerStaticInit7c43393075e296f0ab31d7e4c8c70695::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\ComposerStaticInit7c43393075e296f0ab31d7e4c8c70695::$files;
55
  } else {
56
  $includeFiles = require __DIR__ . '/autoload_files.php';
57
  }
58
  foreach ($includeFiles as $fileIdentifier => $file) {
59
+ composerRequire7c43393075e296f0ab31d7e4c8c70695($fileIdentifier, $file);
60
  }
61
 
62
  return $loader;
63
  }
64
  }
65
 
66
+ function composerRequire7c43393075e296f0ab31d7e4c8c70695($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 ComposerStaticInitd5f79a74687fb8d5b9e2f9d07f5351cc
8
  {
9
  public static $files = array (
10
  '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
@@ -74,9 +74,9 @@ class ComposerStaticInitd5f79a74687fb8d5b9e2f9d07f5351cc
74
  public static function getInitializer(ClassLoader $loader)
75
  {
76
  return \Closure::bind(function () use ($loader) {
77
- $loader->prefixLengthsPsr4 = ComposerStaticInitd5f79a74687fb8d5b9e2f9d07f5351cc::$prefixLengthsPsr4;
78
- $loader->prefixDirsPsr4 = ComposerStaticInitd5f79a74687fb8d5b9e2f9d07f5351cc::$prefixDirsPsr4;
79
- $loader->prefixesPsr0 = ComposerStaticInitd5f79a74687fb8d5b9e2f9d07f5351cc::$prefixesPsr0;
80
 
81
  }, null, ClassLoader::class);
82
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit7c43393075e296f0ab31d7e4c8c70695
8
  {
9
  public static $files = array (
10
  '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
74
  public static function getInitializer(ClassLoader $loader)
75
  {
76
  return \Closure::bind(function () use ($loader) {
77
+ $loader->prefixLengthsPsr4 = ComposerStaticInit7c43393075e296f0ab31d7e4c8c70695::$prefixLengthsPsr4;
78
+ $loader->prefixDirsPsr4 = ComposerStaticInit7c43393075e296f0ab31d7e4c8c70695::$prefixDirsPsr4;
79
+ $loader->prefixesPsr0 = ComposerStaticInit7c43393075e296f0ab31d7e4c8c70695::$prefixesPsr0;
80
 
81
  }, null, ClassLoader::class);
82
  }