Version Description
- Fixed bug when creating new forms
Download this release
Release Info
Developer | codepeople |
Plugin | Contact Form Email |
Version | 1.3.19 |
Comparing to | |
See all releases |
Code changes from version 1.3.18 to 1.3.19
- README.txt +6 -3
- cp-admin-int-list.inc.php +2 -0
- form-to-email.php +1 -1
README.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
|
2 |
Contributors: codepeople
|
3 |
Donate link: https://form2email.dwbooster.com/download
|
4 |
Tags: contact form,contact,email,contact form database,form,contact form excel,form to email,form to database,contact form builder,form to csv,form to excel,contact form csv
|
@@ -456,6 +456,9 @@ When you click a field already added into the contact form builder area, you can
|
|
456 |
|
457 |
== Changelog ==
|
458 |
|
|
|
|
|
|
|
459 |
= 1.3.18 =
|
460 |
* Compatible with the WordPress 4.7 version
|
461 |
|
@@ -1108,5 +1111,5 @@ When you click a field already added into the contact form builder area, you can
|
|
1108 |
|
1109 |
== Upgrade Notice ==
|
1110 |
|
1111 |
-
= 1.3.
|
1112 |
-
*
|
1 |
+
Contact Form Email ===
|
2 |
Contributors: codepeople
|
3 |
Donate link: https://form2email.dwbooster.com/download
|
4 |
Tags: contact form,contact,email,contact form database,form,contact form excel,form to email,form to database,contact form builder,form to csv,form to excel,contact form csv
|
456 |
|
457 |
== Changelog ==
|
458 |
|
459 |
+
= 1.3.19 =
|
460 |
+
* Fixed bug when creating new forms
|
461 |
+
|
462 |
= 1.3.18 =
|
463 |
* Compatible with the WordPress 4.7 version
|
464 |
|
1111 |
|
1112 |
== Upgrade Notice ==
|
1113 |
|
1114 |
+
= 1.3.19 =
|
1115 |
+
* Fixed bug when creating new forms
|
cp-admin-int-list.inc.php
CHANGED
@@ -30,6 +30,8 @@ if (isset($_GET['a']) && $_GET['a'] == '1')
|
|
30 |
|
31 |
define('CP_CFEMAIL_DEFAULT_fp_destination_emails', get_the_author_meta('user_email', get_current_user_id()));
|
32 |
|
|
|
|
|
33 |
$wpdb->insert( $wpdb->prefix.$this->table_items, array(
|
34 |
'form_name' => stripcslashes($_GET["name"]),
|
35 |
|
30 |
|
31 |
define('CP_CFEMAIL_DEFAULT_fp_destination_emails', get_the_author_meta('user_email', get_current_user_id()));
|
32 |
|
33 |
+
$this->add_field_verify($wpdb->prefix.$this->table_items, "cv_enable_captchaintelligent", "VARCHAR(10)");
|
34 |
+
|
35 |
$wpdb->insert( $wpdb->prefix.$this->table_items, array(
|
36 |
'form_name' => stripcslashes($_GET["name"]),
|
37 |
|
form-to-email.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Contact Form Email
|
4 |
Plugin URI: https://form2email.dwbooster.com/download
|
5 |
Description: Contact form that sends the data to email and also to a database list and CSV file.
|
6 |
-
Version: 1.3.
|
7 |
Author: CodePeople
|
8 |
Author URI: https://form2email.dwbooster.com
|
9 |
Text Domain: contact-form-to-email
|
3 |
Plugin Name: Contact Form Email
|
4 |
Plugin URI: https://form2email.dwbooster.com/download
|
5 |
Description: Contact form that sends the data to email and also to a database list and CSV file.
|
6 |
+
Version: 1.3.19
|
7 |
Author: CodePeople
|
8 |
Author URI: https://form2email.dwbooster.com
|
9 |
Text Domain: contact-form-to-email
|