Upgarded to 4.17.4

This commit is contained in:
2022-06-23 13:17:18 +01:00
parent 80f1e87db9
commit a04fb0c7af
404 changed files with 54683 additions and 4417 deletions

View File

@ -901,6 +901,8 @@ class ET_Builder_Module_Contact_Form_Item extends ET_Builder_Module {
'<p class="%5$s"%6$s data-id="%3$s" data-type="%7$s">
%9$s
%8$s
%11$s
%12$s
<label for="et_pb_contact_%3$s_%2$s" class="et_pb_contact_form_label"%10$s>%1$s</label>
%4$s
</p>',
@ -917,7 +919,9 @@ class ET_Builder_Module_Contact_Form_Item extends ET_Builder_Module {
array(
'content' => '{{field_title}}',
)
)
),
et_core_esc_previously( $this->background_pattern() ), // #11
et_core_esc_previously( $this->background_mask() ) // #12
);
return $output;
@ -934,7 +938,9 @@ class ET_Builder_Module_Contact_Form_Item extends ET_Builder_Module {
return 'on' === self::$_->array_get( $this->props, 'background_enable_color' )
|| 'on' === self::$_->array_get( $this->props, 'background_enable_image' )
|| 'on' === self::$_->array_get( $this->props, 'background_enable_video_mp4' )
|| 'on' === self::$_->array_get( $this->props, 'background_enable_video_webm' );
|| 'on' === self::$_->array_get( $this->props, 'background_enable_video_webm' )
|| 'on' === self::$_->array_get( $this->props, 'background_enable_pattern_style' )
|| 'on' === self::$_->array_get( $this->props, 'background_enable_mask_style' );
}
}