Brizy – Page Builder - Version 1.0.18

Version Description

  • 2018-06-28 =
  • Fixed: Fixed asset proxy url
Download this release

Release Info

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

Code changes from version 1.0.17 to 1.0.18

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.17<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.17 - 2018-06-27 ###
100
  * Fixed: Form email field validation
101
  * Fixed: Section auto generated ids anchor problems
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.18<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.18 - 2018-06-28 ###
100
+ * Fixed: Fixed asset proxy url
101
+
102
  ### 1.0.17 - 2018-06-27 ###
103
  * Fixed: Form email field validation
104
  * Fixed: Section auto generated ids anchor problems
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.17
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
@@ -13,7 +13,7 @@
13
 
14
  define( 'BRIZY_DEVELOPMENT', false );
15
  define( 'BRIZY_LOG', false );
16
- define( 'BRIZY_VERSION', '1.0.17' );
17
  define( 'BRIZY_EDITOR_VERSION', '1.0.41' );
18
  define( 'BRIZY_FILE', __FILE__ );
19
  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.18
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
13
 
14
  define( 'BRIZY_DEVELOPMENT', false );
15
  define( 'BRIZY_LOG', false );
16
+ define( 'BRIZY_VERSION', '1.0.18' );
17
  define( 'BRIZY_EDITOR_VERSION', '1.0.41' );
18
  define( 'BRIZY_FILE', __FILE__ );
19
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
editor/api.php CHANGED
@@ -506,7 +506,6 @@ class Brizy_Editor_API {
506
  ) );
507
  } catch ( Exception $exception ) {
508
  Brizy_Logger::instance()->exception( $exception );
509
- http://brizy.local/wp-admin/admin-ajax.php?post=13
510
  $this->error( $exception->getCode(), $exception->getMessage() );
511
  }
512
  }
506
  ) );
507
  } catch ( Exception $exception ) {
508
  Brizy_Logger::instance()->exception( $exception );
 
509
  $this->error( $exception->getCode(), $exception->getMessage() );
510
  }
511
  }
editor/url-builder.php CHANGED
@@ -47,7 +47,7 @@ class Brizy_Editor_UrlBuilder {
47
  }
48
 
49
  public function proxy_url( $end_point ) {
50
- return site_url() . '?brizy=' . $end_point;
51
  }
52
 
53
  /**
47
  }
48
 
49
  public function proxy_url( $end_point ) {
50
+ return site_url('?brizy=' . $end_point);
51
  }
52
 
53
  /**
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.17
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -129,6 +129,9 @@ The progress you're making while building your page is always backed up in the c
129
 
130
  == Changelog ==
131
 
 
 
 
132
  = 1.0.17 - 2018-06-27 =
133
  * Fixed: Form email field validation
134
  * Fixed: Section auto generated ids anchor problems
4
  Requires at least: 4.5
5
  Tested up to: 4.9
6
  Requires PHP: 5.4
7
+ Stable tag: 1.0.18
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
129
 
130
  == Changelog ==
131
 
132
+ = 1.0.18 - 2018-06-28 =
133
+ * Fixed: Fixed asset proxy url
134
+
135
  = 1.0.17 - 2018-06-27 =
136
  * Fixed: Form email field validation
137
  * Fixed: Section auto generated ids anchor problems
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit020b22509aaeb4822dcb4e864c724644::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit40aeca14c34d20dd0ae57e097c2298e8::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit020b22509aaeb4822dcb4e864c724644
6
  {
7
  private static $loader;
8
 
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit020b22509aaeb4822dcb4e864c724644
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInit020b22509aaeb4822dcb4e864c724644', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInit020b22509aaeb4822dcb4e864c724644', '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\ComposerStaticInit020b22509aaeb4822dcb4e864c724644::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 ComposerAutoloaderInit40aeca14c34d20dd0ae57e097c2298e8
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit40aeca14c34d20dd0ae57e097c2298e8', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit40aeca14c34d20dd0ae57e097c2298e8', '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\ComposerStaticInit40aeca14c34d20dd0ae57e097c2298e8::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 ComposerStaticInit020b22509aaeb4822dcb4e864c724644
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'T' =>
@@ -33,9 +33,9 @@ class ComposerStaticInit020b22509aaeb4822dcb4e864c724644
33
  public static function getInitializer(ClassLoader $loader)
34
  {
35
  return \Closure::bind(function () use ($loader) {
36
- $loader->prefixLengthsPsr4 = ComposerStaticInit020b22509aaeb4822dcb4e864c724644::$prefixLengthsPsr4;
37
- $loader->prefixDirsPsr4 = ComposerStaticInit020b22509aaeb4822dcb4e864c724644::$prefixDirsPsr4;
38
- $loader->prefixesPsr0 = ComposerStaticInit020b22509aaeb4822dcb4e864c724644::$prefixesPsr0;
39
 
40
  }, null, ClassLoader::class);
41
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit40aeca14c34d20dd0ae57e097c2298e8
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'T' =>
33
  public static function getInitializer(ClassLoader $loader)
34
  {
35
  return \Closure::bind(function () use ($loader) {
36
+ $loader->prefixLengthsPsr4 = ComposerStaticInit40aeca14c34d20dd0ae57e097c2298e8::$prefixLengthsPsr4;
37
+ $loader->prefixDirsPsr4 = ComposerStaticInit40aeca14c34d20dd0ae57e097c2298e8::$prefixDirsPsr4;
38
+ $loader->prefixesPsr0 = ComposerStaticInit40aeca14c34d20dd0ae57e097c2298e8::$prefixesPsr0;
39
 
40
  }, null, ClassLoader::class);
41
  }