From 92df07a63fc7d00d5fd2ba4d30dc5f29324f7a09 Mon Sep 17 00:00:00 2001 From: Andrew Misplon Date: Mon, 3 Jan 2022 15:49:21 +0200 Subject: [PATCH 1/3] Updated Build submodule --- build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build b/build index 7aac0ccbf..7b9e01bc8 160000 --- a/build +++ b/build @@ -1 +1 @@ -Subproject commit 7aac0ccbf0fdd6d0549299ddde5324d572eb8d8d +Subproject commit 7b9e01bc845b5a8a2329af8436ba768fd1c889ba From 3d2d7d72f94a943dd065c0723bbefe2de95851ad Mon Sep 17 00:00:00 2001 From: Alex S <17275120+AlexGStapleton@users.noreply.github.com> Date: Tue, 4 Jan 2022 23:43:44 +1100 Subject: [PATCH 2/3] Legacy Widgets: Change $adjustedEndCount to buffer length It's possible for the $count to be wrong, and this commit prevents that. --- widgets/lib/lessc.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/lib/lessc.inc.php b/widgets/lib/lessc.inc.php index 826efcaf1..cd89814d9 100644 --- a/widgets/lib/lessc.inc.php +++ b/widgets/lib/lessc.inc.php @@ -3063,7 +3063,7 @@ protected function keyword(&$word) { // consume an end of statement delimiter protected function end() { - $adjustedEndCount = $this->count++; + $adjustedEndCount = strlen( $this->buffer ); if ($this->literal(';')) { return true; } elseif ( From f8bc90332d037d49f61ecd88c658d43f1a2e7a5b Mon Sep 17 00:00:00 2001 From: Andrew Misplon Date: Tue, 4 Jan 2022 21:18:18 +0200 Subject: [PATCH 3/3] Updated changelog --- readme.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/readme.txt b/readme.txt index c7a7299b4..3846bb689 100644 --- a/readme.txt +++ b/readme.txt @@ -107,6 +107,16 @@ SiteOrigin Premium includes access to our professional email support service, pe == Changelog == += 2.16.0 - 04 January 2022 = +* Added a new global `Mobile Widget Bottom Margin` setting. +* Added a new global `Mobile Cell Bottom Margin` setting. +* Legacy Widgets: Updated for PHP 8 compatibility. +* WordPress 5.9 Compatibility: Resolved row ordering issue. +* jQuery: Resolved jQuery Migrate notice. Updated `ready` function. +* Full-Width Containers Using CSS: Theme container no longer removed on pages without full-width rows. +* Developer: Resolved JavaScript error when all style fields removed. +* Developer: Added `panels_title_check_sub_fields` to allow for sub-field detection. + = 2.15.3 - 01 December 2021 = * Rows/Cells: Prevented possible data mismatch.