Version Description
- 23 March 2022 =
- Improved empty CSS rule check to avoid potential edge cases.
Download this release
Release Info
Developer | SiteOrigin |
Plugin | Page Builder by SiteOrigin |
Version | 2.16.7 |
Comparing to | |
See all releases |
Code changes from version 2.16.6 to 2.16.7
- inc/css-builder.php +1 -1
- readme.txt +5 -2
- siteorigin-panels.php +2 -2
inc/css-builder.php
CHANGED
@@ -30,7 +30,7 @@ class SiteOrigin_Panels_Css_Builder {
|
|
30 |
if ( ! strlen( (string) $v[ $i ] ) ) continue;
|
31 |
$attribute_string[] = wp_strip_all_tags( $k ) . ':' . wp_strip_all_tags( $v[ $i ] );
|
32 |
}
|
33 |
-
} elseif ( ! strlen( (string) $v ) || $v
|
34 |
continue;
|
35 |
} else {
|
36 |
$attribute_string[] = wp_strip_all_tags( $k ) . ':' . wp_strip_all_tags( $v );
|
30 |
if ( ! strlen( (string) $v[ $i ] ) ) continue;
|
31 |
$attribute_string[] = wp_strip_all_tags( $k ) . ':' . wp_strip_all_tags( $v[ $i ] );
|
32 |
}
|
33 |
+
} elseif ( ! strlen( (string) $v ) || $v === 'px' ) {
|
34 |
continue;
|
35 |
} else {
|
36 |
$attribute_string[] = wp_strip_all_tags( $k ) . ':' . wp_strip_all_tags( $v );
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Tags: page builder, responsive, parallax, widgets, blocks, gallery, layout, grid
|
|
3 |
Requires at least: 4.7
|
4 |
Tested up to: 5.9
|
5 |
Requires PHP: 5.6.20
|
6 |
-
Stable tag: 2.16.
|
7 |
-
Build time: 2022-03-
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl.html
|
10 |
Donate link: https://siteorigin.com/downloads/premium/
|
@@ -107,6 +107,9 @@ SiteOrigin Premium includes access to our professional email support service, pe
|
|
107 |
|
108 |
== Changelog ==
|
109 |
|
|
|
|
|
|
|
110 |
= 2.16.6 - 21 March 2022 =
|
111 |
* Prevented CSS properties outputting with only `px` set as the value.
|
112 |
* WPML: Refined sidebar emulator language path removal.
|
3 |
Requires at least: 4.7
|
4 |
Tested up to: 5.9
|
5 |
Requires PHP: 5.6.20
|
6 |
+
Stable tag: 2.16.7
|
7 |
+
Build time: 2022-03-23T14:50:16+02:00
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl.html
|
10 |
Donate link: https://siteorigin.com/downloads/premium/
|
107 |
|
108 |
== Changelog ==
|
109 |
|
110 |
+
= 2.16.7 - 23 March 2022 =
|
111 |
+
* Improved empty CSS rule check to avoid potential edge cases.
|
112 |
+
|
113 |
= 2.16.6 - 21 March 2022 =
|
114 |
* Prevented CSS properties outputting with only `px` set as the value.
|
115 |
* WPML: Refined sidebar emulator language path removal.
|
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.16.
|
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.16.
|
15 |
if ( ! defined( 'SITEORIGIN_PANELS_JS_SUFFIX' ) ) {
|
16 |
define( 'SITEORIGIN_PANELS_JS_SUFFIX', '.min' );
|
17 |
}
|
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.16.7
|
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.16.7' );
|
15 |
if ( ! defined( 'SITEORIGIN_PANELS_JS_SUFFIX' ) ) {
|
16 |
define( 'SITEORIGIN_PANELS_JS_SUFFIX', '.min' );
|
17 |
}
|