Contact Form by WPForms – Drag & Drop Form Builder for WordPress - Version 1.1.7.1

Version Description

  • Changed: Removed "New" field name prefix
Download this release

Release Info

Developer jaredatch
Plugin Icon 128x128 Contact Form by WPForms – Drag & Drop Form Builder for WordPress
Version 1.1.7.1
Comparing to
See all releases

Code changes from version 1.1.7 to 1.1.7.1

Files changed (3) hide show
  1. includes/fields/class-base.php +1 -1
  2. readme.txt +3 -0
  3. wpforms.php +2 -2
includes/fields/class-base.php CHANGED
@@ -470,7 +470,7 @@ abstract class WPForms_Field {
470
  $field = array(
471
  'id' => $field_id,
472
  'type' => $field_type,
473
- 'label' => __( 'New', 'wpforms' ) . ' ' . $this->name ,
474
  'description' => '',
475
  );
476
 
470
  $field = array(
471
  'id' => $field_id,
472
  'type' => $field_type,
473
+ 'label' => $this->name,
474
  'description' => '',
475
  );
476
 
readme.txt CHANGED
@@ -159,6 +159,9 @@ Syed Balkhi
159
 
160
  == Changelog ==
161
 
 
 
 
162
  = 1.1.7 =
163
  * Added: Smart Tag for Dropdown/Multiple choice raw values, allowing for conditional email addres notifications (https://wpforms.com/docs/how-to-create-conditional-form-notifications-in-wpforms)
164
  * Added: Three column CSS field classes (https://wpforms.com/docs/how-to-create-multi-column-form-layouts-in-wpforms/)
159
 
160
  == Changelog ==
161
 
162
+ = 1.1.7.1 =
163
+ * Changed: Removed "New" field name prefix
164
+
165
  = 1.1.7 =
166
  * Added: Smart Tag for Dropdown/Multiple choice raw values, allowing for conditional email addres notifications (https://wpforms.com/docs/how-to-create-conditional-form-notifications-in-wpforms)
167
  * Added: Three column CSS field classes (https://wpforms.com/docs/how-to-create-multi-column-form-layouts-in-wpforms/)
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.7
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.7';
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.7.1
9
  * Text Domain: wpforms
10
  * Domain Path: languages
11
  *
54
  * @since 1.0.0
55
  * @var sting
56
  */
57
+ private $version = '1.1.7.1';
58
 
59
  /**
60
  * The form data handler instance.