Visual Form Builder - Version 2.9.2

Version Description

Download this release

Release Info

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

Code changes from version 2.9.1 to 2.9.2

Files changed (3) hide show
  1. includes/email.php +1 -1
  2. readme.txt +7 -2
  3. visual-form-builder.php +4 -4
includes/email.php CHANGED
@@ -305,7 +305,7 @@ $entry = array(
305
  'sender_name' => $form_settings->form_from_name,
306
  'sender_email' => $form_settings->form_from,
307
  'emails_to' => serialize( $form_settings->form_to ),
308
- 'date_submitted' => date_i18n( 'Y-m-d G:i:s' ),
309
  'ip_address' => esc_html( $_SERVER['REMOTE_ADDR'] )
310
  );
311
 
305
  'sender_name' => $form_settings->form_from_name,
306
  'sender_email' => $form_settings->form_from,
307
  'emails_to' => serialize( $form_settings->form_to ),
308
+ 'date_submitted' => date_i18n( 'Y-m-d H:i:s' ),
309
  'ip_address' => esc_html( $_SERVER['REMOTE_ADDR'] )
310
  );
311
 
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, contact forms, form, forms, form to email, email form, email, input, validation, jquery, shortcode, form builder, contact form builder, form manager, form creator
5
  Requires at least: 4.3
6
- Tested up to: 4.6
7
- Stable tag: 2.9.1
8
  License: GPLv2 or later
9
 
10
  Build beautiful, fully functional contact forms in only a few minutes without writing PHP, CSS, or HTML.
@@ -237,6 +237,11 @@ function my_scripts_method() {
237
 
238
  == Changelog ==
239
 
 
 
 
 
 
240
  **Version 2.9.1 - Aug 23, 2016**
241
 
242
  * Add Portuguese language translations
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, contact forms, form, forms, form to email, email form, email, input, validation, jquery, shortcode, form builder, contact form builder, form manager, form creator
5
  Requires at least: 4.3
6
+ Tested up to: 4.7.3
7
+ Stable tag: 2.9.2
8
  License: GPLv2 or later
9
 
10
  Build beautiful, fully functional contact forms in only a few minutes without writing PHP, CSS, or HTML.
237
 
238
  == Changelog ==
239
 
240
+ **Version 2.9.2 - Sep 08, 2016**
241
+
242
+ * Update Date Submitted format to save with leading zeroes to match mySQL format
243
+ * Update IP Address column to store longer IPv6 addresses
244
+
245
  **Version 2.9.1 - Aug 23, 2016**
246
 
247
  * Add Portuguese language translations
visual-form-builder.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Visual Form Builder
4
  Plugin URI: https://wordpress.org/plugins/visual-form-builder/
5
  Description: Dynamically build forms using a simple interface. Forms include jQuery validation, a basic logic-based verification system, and entry tracking.
6
- Version: 2.9.1
7
  Author: Matthew Muro
8
  Author URI: http://matthewmuro.com
9
  Text Domain: visual-form-builder
@@ -11,7 +11,7 @@ Domain Path: /languages/
11
  */
12
 
13
  // Version number to output as meta tag
14
- define( 'VFB_VERSION', '2.9.1' );
15
 
16
  /*
17
  This program is free software; you can redistribute it and/or modify
@@ -44,7 +44,7 @@ class Visual_Form_Builder{
44
  * @var string
45
  * @access protected
46
  */
47
- protected $vfb_db_version = '2.8';
48
 
49
  /**
50
  * Flag used to add scripts to front-end only once
@@ -696,7 +696,7 @@ class Visual_Form_Builder{
696
  sender_email VARCHAR(255),
697
  emails_to TEXT,
698
  date_submitted DATETIME,
699
- ip_address VARCHAR(25),
700
  entry_approved VARCHAR(20) DEFAULT '1',
701
  PRIMARY KEY (entries_id)
702
  ) DEFAULT CHARACTER SET $charset COLLATE $collate;";
3
  Plugin Name: Visual Form Builder
4
  Plugin URI: https://wordpress.org/plugins/visual-form-builder/
5
  Description: Dynamically build forms using a simple interface. Forms include jQuery validation, a basic logic-based verification system, and entry tracking.
6
+ Version: 2.9.2
7
  Author: Matthew Muro
8
  Author URI: http://matthewmuro.com
9
  Text Domain: visual-form-builder
11
  */
12
 
13
  // Version number to output as meta tag
14
+ define( 'VFB_VERSION', '2.9.2' );
15
 
16
  /*
17
  This program is free software; you can redistribute it and/or modify
44
  * @var string
45
  * @access protected
46
  */
47
+ protected $vfb_db_version = '2.9';
48
 
49
  /**
50
  * Flag used to add scripts to front-end only once
696
  sender_email VARCHAR(255),
697
  emails_to TEXT,
698
  date_submitted DATETIME,
699
+ ip_address VARCHAR(50),
700
  entry_approved VARCHAR(20) DEFAULT '1',
701
  PRIMARY KEY (entries_id)
702
  ) DEFAULT CHARACTER SET $charset COLLATE $collate;";