Skip to content

Commit a8bc040

Browse files
release: fixes
- Fixed compatibility issue with Elementor v3.28.0
2 parents 3812ffa + ba68eea commit a8bc040

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/build-dev-artifacts.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: |
3030
echo "::set-output name=dir::$(composer config cache-files-dir)"
3131
- name: Configure Composer cache
32-
uses: actions/cache@v1
32+
uses: actions/cache@v4
3333
with:
3434
path: ${{ steps.composer-cache.outputs.dir }}
3535
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/test-php.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: |
2323
echo "::set-output name=dir::$(composer config cache-files-dir)"
2424
- name: Setup Composer cache
25-
uses: actions/cache@v1
25+
uses: actions/cache@v4
2626
with:
2727
path: ${{ steps.composer-cache.outputs.dir }}
2828
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -60,7 +60,7 @@ jobs:
6060
run: |
6161
echo "::set-output name=dir::$(composer config cache-files-dir)"
6262
- name: Setup Composer cache
63-
uses: actions/cache@v1
63+
uses: actions/cache@v4
6464
with:
6565
path: ${{ steps.composer-cache.outputs.dir }}
6666
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

composer.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

obfx_modules/content-forms/includes/widgets-admin/elementor/elementor_widget_manager.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ private function search_and_modify_widget_settings( &$elements_data ) {
109109
*/
110110
public function before_settings_save( $data, $document ) {
111111
if ( ! isset( $data['elements'] ) ) {
112-
return;
112+
return $data;
113113
}
114114
$this->search_and_modify_widget_settings( $data['elements'] );
115115
return $data;

0 commit comments

Comments
 (0)