Brizy – Page Builder - Version 1.0.24

Version Description

  • 2018-08-07 =
  • Fixed: Upload path for windows installs
Download this release

Release Info

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

Code changes from version 1.0.23 to 1.0.24

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.23<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.23 - 2018-08-06 ###
100
  * Fixed: RichText word-break in Firefox
101
  * Fixed: Added twig file system cache to avoid using eval function.
@@ -104,8 +107,8 @@ A good bug report includes full details to easily understand the issue you are h
104
  * Fixed: Filter content only on main request regardles of what page type we show the content
105
 
106
  ### 1.0.22 - 2018-08-02 ###
107
- * Improvement : Removed duplicate code that updates the needs_compile flag when the globals is updated
108
- * Improvement: Added validation of global JSON object
109
  * Fixed: Editor loading animation wouldn’t end when certain plugins were installed
110
 
111
  ### 1.0.21 - 2018-07-30 ###
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.24<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.24 - 2018-08-07 ###
100
+ * Fixed: Upload path for windows installs
101
+
102
  ### 1.0.23 - 2018-08-06 ###
103
  * Fixed: RichText word-break in Firefox
104
  * Fixed: Added twig file system cache to avoid using eval function.
107
  * Fixed: Filter content only on main request regardles of what page type we show the content
108
 
109
  ### 1.0.22 - 2018-08-02 ###
110
+ * Improved: Removed duplicate code that updates the needs_compile flag when the globals is updated
111
+ * Improved: Added validation of global JSON object
112
  * Fixed: Editor loading animation wouldn’t end when certain plugins were installed
113
 
114
  ### 1.0.21 - 2018-07-30 ###
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.23
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.23' );
24
  define( 'BRIZY_EDITOR_VERSION', '1.0.50' );
25
  define( 'BRIZY_FILE', __FILE__ );
26
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
+ * Version: 1.0.24
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.24' );
24
  define( 'BRIZY_EDITOR_VERSION', '1.0.50' );
25
  define( 'BRIZY_FILE', __FILE__ );
26
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
editor/url-builder.php CHANGED
@@ -79,7 +79,7 @@ class Brizy_Editor_UrlBuilder {
79
  */
80
  public function upload_path( $path = null ) {
81
  if ( $path ) {
82
- $path = DIRECTORY_SEPARATOR . ltrim( $path, DIRECTORY_SEPARATOR );
83
  }
84
 
85
  return $this->upload_dir['basedir'] . $path;
79
  */
80
  public function upload_path( $path = null ) {
81
  if ( $path ) {
82
+ $path = "/" . ltrim( $path, "/" );
83
  }
84
 
85
  return $this->upload_dir['basedir'] . $path;
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.23
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.23 - 2018-08-06 =
143
  * Fixed: RichText word-break in Firefox
144
  * Fixed: Added twig file system cache to avoid using eval function.
@@ -147,8 +150,8 @@ The progress you're making while building your page is always backed up in the c
147
  * Fixed: Filter content only on main request regardles of what page type we show the content
148
 
149
  = 1.0.22 - 2018-08-02 =
150
- * Improvement : Removed duplicate code that updates the needs_compile flag when the globals is updated
151
- * Improvement: Added validation of global JSON object
152
  * Fixed: Editor loading animation wouldn’t end when certain plugins were installed
153
 
154
  = 1.0.21 - 2018-07-30 =
4
  Requires at least: 4.5
5
  Tested up to: 4.9
6
  Requires PHP: 5.4
7
+ Stable tag: 1.0.24
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
139
 
140
  == Changelog ==
141
 
142
+ = 1.0.24 - 2018-08-07 =
143
+ * Fixed: Upload path for windows installs
144
+
145
  = 1.0.23 - 2018-08-06 =
146
  * Fixed: RichText word-break in Firefox
147
  * Fixed: Added twig file system cache to avoid using eval function.
150
  * Fixed: Filter content only on main request regardles of what page type we show the content
151
 
152
  = 1.0.22 - 2018-08-02 =
153
+ * Improved: Removed duplicate code that updates the needs_compile flag when the globals is updated
154
+ * Improved: Added validation of global JSON object
155
  * Fixed: Editor loading animation wouldn’t end when certain plugins were installed
156
 
157
  = 1.0.21 - 2018-07-30 =
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit41c75ccc788161e0b63983c6867c504c::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInited42d58cdae7c93ac2da2ca67ed6f70d::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit41c75ccc788161e0b63983c6867c504c
6
  {
7
  private static $loader;
8
 
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit41c75ccc788161e0b63983c6867c504c
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInit41c75ccc788161e0b63983c6867c504c', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInit41c75ccc788161e0b63983c6867c504c', '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\ComposerStaticInit41c75ccc788161e0b63983c6867c504c::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 ComposerAutoloaderInited42d58cdae7c93ac2da2ca67ed6f70d
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInited42d58cdae7c93ac2da2ca67ed6f70d', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInited42d58cdae7c93ac2da2ca67ed6f70d', '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\ComposerStaticInited42d58cdae7c93ac2da2ca67ed6f70d::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 ComposerStaticInit41c75ccc788161e0b63983c6867c504c
8
  {
9
  public static $prefixesPsr0 = array (
10
  'T' =>
@@ -19,7 +19,7 @@ class ComposerStaticInit41c75ccc788161e0b63983c6867c504c
19
  public static function getInitializer(ClassLoader $loader)
20
  {
21
  return \Closure::bind(function () use ($loader) {
22
- $loader->prefixesPsr0 = ComposerStaticInit41c75ccc788161e0b63983c6867c504c::$prefixesPsr0;
23
 
24
  }, null, ClassLoader::class);
25
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInited42d58cdae7c93ac2da2ca67ed6f70d
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 = ComposerStaticInited42d58cdae7c93ac2da2ca67ed6f70d::$prefixesPsr0;
23
 
24
  }, null, ClassLoader::class);
25
  }