Visual Form Builder - Version 2.9

Version Description

Fix regression for recent entries bug fix

Download this release

Release Info

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

Code changes from version 2.8.9 to 2.9

includes/class-entries-list.php CHANGED
@@ -323,12 +323,12 @@ class VisualFormBuilder_Entries_List extends WP_List_Table {
323
  $entry_id = '';
324
 
325
  // Set the Entry ID array
326
- if ( isset( $_GET['entry'] ) ) :
327
- if ( is_array( $_GET['entry'] ) )
328
- $entry_id = $_GET['entry'];
329
- else
330
- $entry_id = (array) $_GET['entry'];
331
- endif;
332
 
333
  switch( $this->current_action() ) :
334
  case 'trash' :
323
  $entry_id = '';
324
 
325
  // Set the Entry ID array
326
+ if ( isset( $_GET['entry'] ) )
327
+ $entry_id = (array) $_GET['entry'];
328
+
329
+ if ( isset( $_POST['entry'] ) && is_array( $_POST['entry'] ) ) {
330
+ $entry_id = $_POST['entry'];
331
+ }
332
 
333
  switch( $this->current_action() ) :
334
  case 'trash' :
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=G87A9
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.5.3
7
- Stable tag: 2.8.9
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,10 @@ function my_scripts_method() {
237
 
238
  == Changelog ==
239
 
 
 
 
 
240
  **Version 2.8.9 - Jul 24, 2016**
241
 
242
  * Fix bug where entries could not be trashed or deleted
@@ -687,6 +691,9 @@ function my_scripts_method() {
687
 
688
  == Upgrade Notice ==
689
 
 
 
 
690
  = 2.8.9 =
691
  Fix bug where entries could not be trashed or deleted
692
 
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.5.3
7
+ Stable tag: 2.9
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 - Jul 26, 2016**
241
+
242
+ * Fix regression for recent entries bug fix
243
+
244
  **Version 2.8.9 - Jul 24, 2016**
245
 
246
  * Fix bug where entries could not be trashed or deleted
691
 
692
  == Upgrade Notice ==
693
 
694
+ = 2.9 =
695
+ Fix regression for recent entries bug fix
696
+
697
  = 2.8.9 =
698
  Fix bug where entries could not be trashed or deleted
699
 
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.8.9
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.8.9' );
15
 
16
  /*
17
  This program is free software; you can redistribute it and/or modify
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
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' );
15
 
16
  /*
17
  This program is free software; you can redistribute it and/or modify