Visual Form Builder - Version 1.9.1

Version Description

Recommend update! Bug fix for Sender Name, Email, and Notification Email overrides.

Download this release

Release Info

Developer mmuro
Plugin Icon 128x128 Visual Form Builder
Version 1.9.1
Comparing to
See all releases

Code changes from version 1.9 to 1.9.1

Files changed (2) hide show
  1. readme.txt +9 -2
  2. visual-form-builder.php +4 -4
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: mmuro
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=G87A9UN9CLPH4&lc=US&item_name=Visual%20Form%20Builder&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted
4
  Tags: form, forms, contact form, form to email, email form, email, input, validation, jquery, shortcode
5
  Requires at least: 3.1
6
- Tested up to: 3.3
7
- Stable tag: 1.9
8
 
9
  Dynamically build forms using a simple interface. Forms include jQuery validation, a basic logic-based verification system, and entry tracking.
10
 
@@ -173,6 +173,10 @@ To Export Selected:
173
 
174
  == Changelog ==
175
 
 
 
 
 
176
  **Version 1.9**
177
 
178
  * Add ability for fields to be nested underneath Fieldsets and Sections
@@ -261,6 +265,9 @@ To Export Selected:
261
 
262
  == Upgrade Notice ==
263
 
 
 
 
264
  = 1.9 =
265
  Added Section Form Item, ability to nest fields under Fieldsets and Sections. Improve adding/deleting fields.
266
 
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=G87A9UN9CLPH4&lc=US&item_name=Visual%20Form%20Builder&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted
4
  Tags: form, forms, contact form, form to email, email form, email, input, validation, jquery, shortcode
5
  Requires at least: 3.1
6
+ Tested up to: 3.3.1
7
+ Stable tag: 1.9.1
8
 
9
  Dynamically build forms using a simple interface. Forms include jQuery validation, a basic logic-based verification system, and entry tracking.
10
 
173
 
174
  == Changelog ==
175
 
176
+ **Version 1.9.1**
177
+
178
+ * Bug fix for Sender Name, Email, and Notification Email overrides
179
+
180
  **Version 1.9**
181
 
182
  * Add ability for fields to be nested underneath Fieldsets and Sections
265
 
266
  == Upgrade Notice ==
267
 
268
+ = 1.9.1 =
269
+ Recommend update! Bug fix for Sender Name, Email, and Notification Email overrides.
270
+
271
  = 1.9 =
272
  Added Section Form Item, ability to nest fields under Fieldsets and Sections. Improve adding/deleting fields.
273
 
visual-form-builder.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Visual Form Builder
4
  Description: Dynamically build forms using a simple interface. Forms include jQuery validation, a basic logic-based verification system, and entry tracking.
5
  Author: Matthew Muro
6
- Version: 1.9
7
  */
8
 
9
  /*
@@ -27,7 +27,7 @@ $visual_form_builder = new Visual_Form_Builder();
27
  /* Restrict Categories class */
28
  class Visual_Form_Builder{
29
 
30
- public $vfb_db_version = '1.9';
31
 
32
  public function __construct(){
33
  global $wpdb;
@@ -1911,13 +1911,13 @@ class Visual_Form_Builder{
1911
  /* Loop through email results and assign sender email to override, if needed */
1912
  foreach ( $emails as $email ) {
1913
  if ( !empty( $email->field_key ) )
1914
- $form_from = $_POST[ 'vfb-' . $email->field_key . '-' . $sender->field_id ];
1915
  }
1916
 
1917
  /* Loop through email results and assign as blind carbon copy, if needed */
1918
  foreach ( $notification as $notify ) {
1919
  if ( !empty( $notify->field_key ) )
1920
- $copy_email = $_POST[ 'vfb-' . $notify->field_key . '-' . $sender->field_id ];
1921
  }
1922
 
1923
  /* Query to get all forms */
3
  Plugin Name: Visual Form Builder
4
  Description: Dynamically build forms using a simple interface. Forms include jQuery validation, a basic logic-based verification system, and entry tracking.
5
  Author: Matthew Muro
6
+ Version: 1.9.1
7
  */
8
 
9
  /*
27
  /* Restrict Categories class */
28
  class Visual_Form_Builder{
29
 
30
+ public $vfb_db_version = '1.9.1';
31
 
32
  public function __construct(){
33
  global $wpdb;
1911
  /* Loop through email results and assign sender email to override, if needed */
1912
  foreach ( $emails as $email ) {
1913
  if ( !empty( $email->field_key ) )
1914
+ $form_from = $_POST[ 'vfb-' . $email->field_key . '-' . $email->field_id ];
1915
  }
1916
 
1917
  /* Loop through email results and assign as blind carbon copy, if needed */
1918
  foreach ( $notification as $notify ) {
1919
  if ( !empty( $notify->field_key ) )
1920
+ $copy_email = $_POST[ 'vfb-' . $notify->field_key . '-' . $notify->field_id ];
1921
  }
1922
 
1923
  /* Query to get all forms */