Advanced Contact form 7 DB - Version 1.1.2

Version Description

  • Fix error related to PHP 7.1.
Download this release

Release Info

Developer vsourz1td
Plugin Icon 128x128 Advanced Contact form 7 DB
Version 1.1.2
Comparing to
See all releases

Code changes from version 1.1.1 to 1.1.2

README.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: vsourz1td
3
  Tags: contact form 7 db, advanced cf7 db, contact form 7 database, contact form db, contact form 7, database, cf7db, save-contact-form, Save-Forms-Data, import-cf7, export-contact-data, view-cf7-entry
4
  Requires at least: 3.5
5
- Tested up to: 4.8
6
- Stable tag: 1.1.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -91,6 +91,9 @@ If you think, that you found a bug in our plugin or have any question contact us
91
 
92
 
93
  == Changelog ==
 
 
 
94
  = 1.1.1 =
95
  * Made changes to resolve issue of user feasibility when editing the form fields.
96
  * Minor tweak related to export functionality and attachment download functionality.
2
  Contributors: vsourz1td
3
  Tags: contact form 7 db, advanced cf7 db, contact form 7 database, contact form db, contact form 7, database, cf7db, save-contact-form, Save-Forms-Data, import-cf7, export-contact-data, view-cf7-entry
4
  Requires at least: 3.5
5
+ Tested up to: 4.8.2
6
+ Stable tag: 1.1.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
91
 
92
 
93
  == Changelog ==
94
+ = 1.1.2 =
95
+ * Fix error related to PHP 7.1.
96
+
97
  = 1.1.1 =
98
  * Made changes to resolve issue of user feasibility when editing the form fields.
99
  * Minor tweak related to export functionality and attachment download functionality.
admin/class-advanced-cf7-db-admin.php CHANGED
@@ -593,7 +593,7 @@ class Advanced_Cf7_Db_Admin {
593
  //Define option field type array
594
  $arr_option_type = array('checkbox','radio','select');
595
  //Get non editable fields information
596
- $not_editable_field = apply_filters('vsz_cf7_not_editable_fields');
597
  //Get entry related fields information
598
  $arr_exist_keys = get_entry_related_fields_info($fid,$rid);
599
 
593
  //Define option field type array
594
  $arr_option_type = array('checkbox','radio','select');
595
  //Get non editable fields information
596
+ $not_editable_field = apply_filters('vsz_cf7_not_editable_fields',array());
597
  //Get entry related fields information
598
  $arr_exist_keys = get_entry_related_fields_info($fid,$rid);
599
 
admin/partials/contact_form_listing.php CHANGED
@@ -49,7 +49,7 @@ else{
49
  global $wpdb;
50
  $sql = sprintf("SELECT `cf7_id` FROM `".VSZ_CF7_DATA_ENTRY_TABLE_NAME."` GROUP BY `cf7_id`" );
51
  $data = $wpdb->get_results($sql,ARRAY_N);
52
- $arr_form_id = '';
53
  if(!empty($data)){
54
  foreach($data as $arrVal){
55
  $arr_form_id[] = (int)$arrVal[0];
49
  global $wpdb;
50
  $sql = sprintf("SELECT `cf7_id` FROM `".VSZ_CF7_DATA_ENTRY_TABLE_NAME."` GROUP BY `cf7_id`" );
51
  $data = $wpdb->get_results($sql,ARRAY_N);
52
+ $arr_form_id = array();
53
  if(!empty($data)){
54
  foreach($data as $arrVal){
55
  $arr_form_id[] = (int)$arrVal[0];
admin/partials/import_cf7_entry.class.php CHANGED
@@ -31,6 +31,7 @@ if(!isset($_POST['form_match_key']) || empty($_POST['form_match_key']) || !isset
31
 
32
  $error_data = array();
33
  $new_csv = array();
 
34
  $header = '';
35
 
36
  $fid = '';
31
 
32
  $error_data = array();
33
  $new_csv = array();
34
+ $error_csv = array();
35
  $header = '';
36
 
37
  $fid = '';
advanced-cf7-db.php CHANGED
@@ -9,7 +9,7 @@
9
  * Plugin Name: Advanced CF7 DB
10
  * Plugin URI: https://wordpress.org/plugins/advanced-cf7-db/
11
  * Description: Save all contact form 7 submitted data to the database, View, Export, ordering, Change field labels, Import data using CSV very easily.
12
- * Version: 1.1.1
13
  * Author: Vsourz Digital
14
  * Author URI: https://www.vsourz.com
15
  * License: GPL-2.0+
9
  * Plugin Name: Advanced CF7 DB
10
  * Plugin URI: https://wordpress.org/plugins/advanced-cf7-db/
11
  * Description: Save all contact form 7 submitted data to the database, View, Export, ordering, Change field labels, Import data using CSV very easily.
12
+ * Version: 1.1.2
13
  * Author: Vsourz Digital
14
  * Author URI: https://www.vsourz.com
15
  * License: GPL-2.0+
includes/class-advanced-cf7-db.php CHANGED
@@ -69,7 +69,7 @@ class Advanced_Cf7_Db {
69
  public function __construct() {
70
 
71
  $this->plugin_name = 'advanced-cf7-db';
72
- $this->version = '1.1.1';
73
 
74
  $this->load_dependencies();
75
  $this->set_locale();
69
  public function __construct() {
70
 
71
  $this->plugin_name = 'advanced-cf7-db';
72
+ $this->version = '1.1.2';
73
 
74
  $this->load_dependencies();
75
  $this->set_locale();