Skip to content

Commit b165605

Browse files
committed
1.4.1
Signed-off-by: Sascha Greuel <[email protected]>
1 parent 6899235 commit b165605

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

files/lib/system/form/builder/field/wysiwyg/MCI18nWysiwygFormField.class.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class MCI18nWysiwygFormField extends AbstractFormField implements
5454

5555
protected string $autosaveId = '';
5656

57-
protected HtmlInputProcessor $htmlInputProcessor;
57+
protected ?HtmlInputProcessor $htmlInputProcessor = null;
5858

5959
/**
6060
* last time the field has been edited; if `0`, the last edit time is unknown
@@ -64,7 +64,7 @@ class MCI18nWysiwygFormField extends AbstractFormField implements
6464
/**
6565
* quote-related data used to create the JavaScript quote manager
6666
*/
67-
protected ?array $quoteData;
67+
protected ?array $quoteData = null;
6868

6969
protected bool $supportAttachments = false;
7070

@@ -97,7 +97,7 @@ class MCI18nWysiwygFormField extends AbstractFormField implements
9797
/**
9898
* pattern for the language item used to save the i18n values
9999
*/
100-
protected ?string $languageItemPattern;
100+
protected ?string $languageItemPattern = null;
101101

102102
/**
103103
* Sets the identifier used to autosave the field value and returns this field.

package.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<packagename language="de"><![CDATA[Form Builder: Erweiterung]]></packagename>
66
<packagedescription><![CDATA[Extension for the form builder API.]]></packagedescription>
77
<packagedescription language="de"><![CDATA[Erweiterung für die Form Builder-API.]]></packagedescription>
8-
<version>1.4.0</version>
9-
<date><![CDATA[2024-09-05]]></date>
8+
<version>1.4.1</version>
9+
<date><![CDATA[2024-10-05]]></date>
1010
<license><![CDATA[Lesser General Public License (LGPL)]]></license>
1111
</packageinformation>
1212

0 commit comments

Comments
 (0)