Brizy – Page Builder - Version 1.0.48

Version Description

  • 2018-11-26 =
  • Fixed: Fixed autoload for some users
Download this release

Release Info

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

Code changes from version 1.0.47 to 1.0.48

README.md CHANGED
@@ -3,7 +3,7 @@ Contributors: themefuse<br>
3
  Requires at least: 4.5<br>
4
  Tested up to: 4.9<br>
5
  Requires PHP: 5.4<br>
6
- Stable tag: 1.0.47<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -96,6 +96,9 @@ A good bug report includes full details to easily understand the issue you are h
96
 
97
  ## Changelog
98
 
 
 
 
99
  ### 1.0.47 - 2018-11-23 ###
100
  * New: Added Column resize in tablet mode
101
  * Fixed: NaN showing in RichText toolbar line-height option in tablet and mobile modes
3
  Requires at least: 4.5<br>
4
  Tested up to: 4.9<br>
5
  Requires PHP: 5.4<br>
6
+ Stable tag: 1.0.48<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
96
 
97
  ## Changelog
98
 
99
+ ### 1.0.48 - 2018-11-26 ###
100
+ * Fixed: Fixed autoload for some users
101
+
102
  ### 1.0.47 - 2018-11-23 ###
103
  * New: Added Column resize in tablet mode
104
  * Fixed: NaN showing in RichText toolbar line-height option in tablet and mobile modes
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: 1.0.47
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
@@ -20,7 +20,7 @@ if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && stripos( $_SERVER['HTTP_X_FO
20
 
21
  define( 'BRIZY_DEVELOPMENT', false );
22
  define( 'BRIZY_LOG', false );
23
- define( 'BRIZY_VERSION', '1.0.47' );
24
  define( 'BRIZY_EDITOR_VERSION', '1.0.73' );
25
  define( 'BRIZY_FILE', __FILE__ );
26
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
@@ -28,7 +28,7 @@ define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
28
  define( 'BRIZY_PLUGIN_URL', rtrim( plugin_dir_url( BRIZY_FILE ), "/" ) );
29
  define( 'BRIZY_MAX_REVISIONS_TO_KEEP', 100 );
30
 
31
- include_once 'autoload.php';
32
 
33
 
34
  add_action( 'plugins_loaded', 'brizy_load' );
@@ -41,6 +41,7 @@ function brizy_load() {
41
 
42
  if ( version_compare( PHP_VERSION, '5.4.0' ) < 0 ) {
43
  add_action( 'admin_notices', 'brizy_notices' );
 
44
  return;
45
  }
46
 
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
+ * Version: 1.0.48
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
20
 
21
  define( 'BRIZY_DEVELOPMENT', false );
22
  define( 'BRIZY_LOG', false );
23
+ define( 'BRIZY_VERSION', '1.0.48' );
24
  define( 'BRIZY_EDITOR_VERSION', '1.0.73' );
25
  define( 'BRIZY_FILE', __FILE__ );
26
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
28
  define( 'BRIZY_PLUGIN_URL', rtrim( plugin_dir_url( BRIZY_FILE ), "/" ) );
29
  define( 'BRIZY_MAX_REVISIONS_TO_KEEP', 100 );
30
 
31
+ include_once rtrim( BRIZY_PLUGIN_PATH, "/" ) . '/autoload.php';
32
 
33
 
34
  add_action( 'plugins_loaded', 'brizy_load' );
41
 
42
  if ( version_compare( PHP_VERSION, '5.4.0' ) < 0 ) {
43
  add_action( 'admin_notices', 'brizy_notices' );
44
+
45
  return;
46
  }
47
 
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: 4.9
6
  Requires PHP: 5.4
7
- Stable tag: 1.0.47
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
  = 1.0.47 - 2018-11-23 =
143
  * New: Added Column resize in tablet mode
144
  * Fixed: NaN showing in RichText toolbar line-height option in tablet and mobile modes
4
  Requires at least: 4.5
5
  Tested up to: 4.9
6
  Requires PHP: 5.4
7
+ Stable tag: 1.0.48
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
139
 
140
  == Changelog ==
141
 
142
+ = 1.0.48 - 2018-11-26 =
143
+ * Fixed: Fixed autoload for some users
144
+
145
  = 1.0.47 - 2018-11-23 =
146
  * New: Added Column resize in tablet mode
147
  * Fixed: NaN showing in RichText toolbar line-height option in tablet and mobile modes
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit486bbfe060f926bec7861abddd91c742::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit6dad64765264556f58b826e5121b58e2::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit486bbfe060f926bec7861abddd91c742
6
  {
7
  private static $loader;
8
 
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit486bbfe060f926bec7861abddd91c742
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInit486bbfe060f926bec7861abddd91c742', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInit486bbfe060f926bec7861abddd91c742', 'loadClassLoader'));
25
 
26
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27
  if ($useStaticLoader) {
28
  require_once __DIR__ . '/autoload_static.php';
29
 
30
- call_user_func(\Composer\Autoload\ComposerStaticInit486bbfe060f926bec7861abddd91c742::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit6dad64765264556f58b826e5121b58e2
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit6dad64765264556f58b826e5121b58e2', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit6dad64765264556f58b826e5121b58e2', 'loadClassLoader'));
25
 
26
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27
  if ($useStaticLoader) {
28
  require_once __DIR__ . '/autoload_static.php';
29
 
30
+ call_user_func(\Composer\Autoload\ComposerStaticInit6dad64765264556f58b826e5121b58e2::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInit486bbfe060f926bec7861abddd91c742
8
  {
9
  public static $prefixesPsr0 = array (
10
  'T' =>
@@ -19,7 +19,7 @@ class ComposerStaticInit486bbfe060f926bec7861abddd91c742
19
  public static function getInitializer(ClassLoader $loader)
20
  {
21
  return \Closure::bind(function () use ($loader) {
22
- $loader->prefixesPsr0 = ComposerStaticInit486bbfe060f926bec7861abddd91c742::$prefixesPsr0;
23
 
24
  }, null, ClassLoader::class);
25
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit6dad64765264556f58b826e5121b58e2
8
  {
9
  public static $prefixesPsr0 = array (
10
  'T' =>
19
  public static function getInitializer(ClassLoader $loader)
20
  {
21
  return \Closure::bind(function () use ($loader) {
22
+ $loader->prefixesPsr0 = ComposerStaticInit6dad64765264556f58b826e5121b58e2::$prefixesPsr0;
23
 
24
  }, null, ClassLoader::class);
25
  }