Page Builder by SiteOrigin - Version 2.4.15

Version Description

  • 6 September 2016 =
  • Fixed legacy widgets check.
Download this release

Release Info

Developer gpriday
Plugin Icon 128x128 Page Builder by SiteOrigin
Version 2.4.15
Comparing to
See all releases

Code changes from version 2.4.14 to 2.4.15

Files changed (2) hide show
  1. readme.txt +6 -3
  2. siteorigin-panels.php +6 -6
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Tags: page builder, responsive, widget, widgets, builder, page, admin, gallery, content, cms, pages, post, css, layout, grid
3
  Requires at least: 4.0
4
  Tested up to: 4.6
5
- Stable tag: 2.4.14
6
- Build time: 2016-09-01T08:00:29+02:00
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl.html
9
  Donate link: http://siteorigin.com/page-builder/#donate
@@ -96,7 +96,10 @@ We've tried to ensure that Page Builder is compatible with most plugin widgets.
96
 
97
  == Changelog ==
98
 
99
- = 2.4.14 - 18 August 2016 =
 
 
 
100
  * Fixes to sidebar emulator to prevent early rewrite rule building.
101
  * Added option to completely disable sidebar emulator.
102
 
2
  Tags: page builder, responsive, widget, widgets, builder, page, admin, gallery, content, cms, pages, post, css, layout, grid
3
  Requires at least: 4.0
4
  Tested up to: 4.6
5
+ Stable tag: 2.4.15
6
+ Build time: 2016-09-06T08:35:33+02:00
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl.html
9
  Donate link: http://siteorigin.com/page-builder/#donate
96
 
97
  == Changelog ==
98
 
99
+ = 2.4.15 - 6 September 2016 =
100
+ * Fixed legacy widgets check.
101
+
102
+ = 2.4.14 - 1 September 2016 =
103
  * Fixes to sidebar emulator to prevent early rewrite rule building.
104
  * Added option to completely disable sidebar emulator.
105
 
siteorigin-panels.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Page Builder by SiteOrigin
4
  Plugin URI: https://siteorigin.com/page-builder/
5
  Description: A drag and drop, responsive page builder that simplifies building your website.
6
- Version: 2.4.14
7
  Author: SiteOrigin
8
  Author URI: https://siteorigin.com
9
  License: GPL3
@@ -11,7 +11,7 @@ License URI: http://www.gnu.org/licenses/gpl.html
11
  Donate link: http://siteorigin.com/page-builder/#donate
12
  */
13
 
14
- define('SITEORIGIN_PANELS_VERSION', '2.4.14');
15
  if ( ! defined('SITEORIGIN_PANELS_JS_SUFFIX' ) ) {
16
  define('SITEORIGIN_PANELS_JS_SUFFIX', '.min');
17
  }
@@ -48,9 +48,9 @@ register_activation_hook(__FILE__, 'siteorigin_panels_activate');
48
  */
49
  function siteorigin_panels_init(){
50
  if(
51
- !siteorigin_panels_setting('bundled-widgets') &&
52
- !defined('SITEORIGIN_PANELS_LEGACY_WIDGETS_ACTIVE') &&
53
- ( !is_admin() || basename($_SERVER["SCRIPT_FILENAME"]) != 'plugins.php')
54
  ) {
55
  // Include the bundled widgets if the Legacy Widgets plugin isn't active.
56
  include plugin_dir_path(__FILE__).'widgets/widgets.php';
@@ -1067,7 +1067,7 @@ function siteorigin_panels_render( $post_id = false, $enqueue_css = true, $panel
1067
  echo apply_filters( 'siteorigin_panels_before_content', '', $panels_data, $post_id );
1068
 
1069
  foreach ( $grids as $gi => $cells ) {
1070
-
1071
  $grid_classes = apply_filters( 'siteorigin_panels_row_classes', array( 'panel-grid' ), $panels_data['grids'][$gi] );
1072
  $grid_id = !empty($panels_data['grids'][$gi]['style']['id']) ? sanitize_html_class( $panels_data['grids'][$gi]['style']['id'] ) : false;
1073
 
3
  Plugin Name: Page Builder by SiteOrigin
4
  Plugin URI: https://siteorigin.com/page-builder/
5
  Description: A drag and drop, responsive page builder that simplifies building your website.
6
+ Version: 2.4.15
7
  Author: SiteOrigin
8
  Author URI: https://siteorigin.com
9
  License: GPL3
11
  Donate link: http://siteorigin.com/page-builder/#donate
12
  */
13
 
14
+ define('SITEORIGIN_PANELS_VERSION', '2.4.15');
15
  if ( ! defined('SITEORIGIN_PANELS_JS_SUFFIX' ) ) {
16
  define('SITEORIGIN_PANELS_JS_SUFFIX', '.min');
17
  }
48
  */
49
  function siteorigin_panels_init(){
50
  if(
51
+ siteorigin_panels_setting('bundled-widgets') &&
52
+ ! defined('SITEORIGIN_PANELS_LEGACY_WIDGETS_ACTIVE') &&
53
+ ( ! is_admin() || basename( $_SERVER["SCRIPT_FILENAME"] ) != 'plugins.php' )
54
  ) {
55
  // Include the bundled widgets if the Legacy Widgets plugin isn't active.
56
  include plugin_dir_path(__FILE__).'widgets/widgets.php';
1067
  echo apply_filters( 'siteorigin_panels_before_content', '', $panels_data, $post_id );
1068
 
1069
  foreach ( $grids as $gi => $cells ) {
1070
+
1071
  $grid_classes = apply_filters( 'siteorigin_panels_row_classes', array( 'panel-grid' ), $panels_data['grids'][$gi] );
1072
  $grid_id = !empty($panels_data['grids'][$gi]['style']['id']) ? sanitize_html_class( $panels_data['grids'][$gi]['style']['id'] ) : false;
1073