Version Description
- Fixed: PHP warnings inside the form builder
Download this release
Release Info
Developer | jaredatch |
Plugin | Contact Form by WPForms – Drag & Drop Form Builder for WordPress |
Version | 1.1.8.1 |
Comparing to | |
See all releases |
Code changes from version 1.1.8 to 1.1.8.1
- includes/admin/builder/functions.php +1 -1
- readme.txt +3 -0
- wpforms.php +2 -2
includes/admin/builder/functions.php
CHANGED
@@ -159,7 +159,7 @@ function wpforms_panel_field( $option, $panel, $field, $form_data, $label, $args
|
|
159 |
$type = !empty( $args['smarttags']['type'] ) ? esc_attr( $args['smarttags']['type'] ) : 'fields';
|
160 |
$fields = !empty( $args['smarttags']['fields'] ) ? esc_attr( $args['smarttags']['fields'] ) : '';
|
161 |
|
162 |
-
$field_label .='<a href="#" class="toggle-smart-tag-display" data-type="' . $type . '" data-fields="' . $fields . '"><i class="fa fa-tags"></i> <span>' .
|
163 |
}
|
164 |
$field_label .= '</label>';
|
165 |
} else {
|
159 |
$type = !empty( $args['smarttags']['type'] ) ? esc_attr( $args['smarttags']['type'] ) : 'fields';
|
160 |
$fields = !empty( $args['smarttags']['fields'] ) ? esc_attr( $args['smarttags']['fields'] ) : '';
|
161 |
|
162 |
+
$field_label .='<a href="#" class="toggle-smart-tag-display" data-type="' . $type . '" data-fields="' . $fields . '"><i class="fa fa-tags"></i> <span>' . __( 'Show Smart Tags', 'wpforms' ) . '</span></a>';
|
163 |
}
|
164 |
$field_label .= '</label>';
|
165 |
} else {
|
readme.txt
CHANGED
@@ -159,6 +159,9 @@ Syed Balkhi
|
|
159 |
|
160 |
== Changelog ==
|
161 |
|
|
|
|
|
|
|
162 |
= 1.1.8 =
|
163 |
* Changed: Moved email related settings into email settings group
|
164 |
|
159 |
|
160 |
== Changelog ==
|
161 |
|
162 |
+
= 1.1.8.1 =
|
163 |
+
* Fixed: PHP warnings inside the form builder
|
164 |
+
|
165 |
= 1.1.8 =
|
166 |
* Changed: Moved email related settings into email settings group
|
167 |
|
wpforms.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Beginner friendly WordPress contact form plugin. Use our Drag & Drop form builder to create your WordPress forms.
|
6 |
* Author: WPForms
|
7 |
* Author URI: https://wpforms.com
|
8 |
-
* Version: 1.1.8
|
9 |
* Text Domain: wpforms
|
10 |
* Domain Path: languages
|
11 |
*
|
@@ -54,7 +54,7 @@ final class WPForms_Lite {
|
|
54 |
* @since 1.0.0
|
55 |
* @var sting
|
56 |
*/
|
57 |
-
private $version = '1.1.8';
|
58 |
|
59 |
/**
|
60 |
* The form data handler instance.
|
5 |
* Description: Beginner friendly WordPress contact form plugin. Use our Drag & Drop form builder to create your WordPress forms.
|
6 |
* Author: WPForms
|
7 |
* Author URI: https://wpforms.com
|
8 |
+
* Version: 1.1.8.1
|
9 |
* Text Domain: wpforms
|
10 |
* Domain Path: languages
|
11 |
*
|
54 |
* @since 1.0.0
|
55 |
* @var sting
|
56 |
*/
|
57 |
+
private $version = '1.1.8.1';
|
58 |
|
59 |
/**
|
60 |
* The form data handler instance.
|