Version Description
- Improved error detection
Download this release
Release Info
Developer | codepeople |
Plugin | Contact Form Email |
Version | 1.2.70 |
Comparing to | |
See all releases |
Code changes from version 1.2.69 to 1.2.70
- README.txt +5 -2
- cp-feedback.php +7 -0
- form-to-email.php +1 -1
README.txt
CHANGED
@@ -454,6 +454,9 @@ When you click a field already added into the contact form builder area, you can
|
|
454 |
|
455 |
== Changelog ==
|
456 |
|
|
|
|
|
|
|
457 |
= 1.2.69 =
|
458 |
* Form builder corrections
|
459 |
|
@@ -968,5 +971,5 @@ When you click a field already added into the contact form builder area, you can
|
|
968 |
|
969 |
== Upgrade Notice ==
|
970 |
|
971 |
-
= 1.2.
|
972 |
-
*
|
454 |
|
455 |
== Changelog ==
|
456 |
|
457 |
+
= 1.2.70 =
|
458 |
+
* Improved error detection
|
459 |
+
|
460 |
= 1.2.69 =
|
461 |
* Form builder corrections
|
462 |
|
971 |
|
972 |
== Upgrade Notice ==
|
973 |
|
974 |
+
= 1.2.70 =
|
975 |
+
* Improved error detection
|
cp-feedback.php
CHANGED
@@ -38,6 +38,13 @@ function cpcfte_feedback() {
|
|
38 |
$data['email'] = urlencode($current_user->user_email);
|
39 |
$data['website'] = urlencode($_SERVER['HTTP_HOST']);
|
40 |
$data['url'] = urlencode(get_site_url());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
}
|
42 |
|
43 |
//extract data from the post
|
38 |
$data['email'] = urlencode($current_user->user_email);
|
39 |
$data['website'] = urlencode($_SERVER['HTTP_HOST']);
|
40 |
$data['url'] = urlencode(get_site_url());
|
41 |
+
$data['theme'] = urlencode(wp_get_theme()->get('Name') . " " .wp_get_theme()->get('Version'));
|
42 |
+
$plist = "";
|
43 |
+
$activeplugins = get_option('active_plugins');
|
44 |
+
$plugins = get_plugins();
|
45 |
+
foreach ($activeplugins as $plugin)
|
46 |
+
$plist .= $plugins[$plugin]["Title"]." ".$plugins[$plugin]["Version"]."\n";
|
47 |
+
$data['plugins'] = urlencode($plist);
|
48 |
}
|
49 |
|
50 |
//extract data from the post
|
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.2.
|
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.2.70
|
7 |
Author: CodePeople
|
8 |
Author URI: https://form2email.dwbooster.com
|
9 |
Text Domain: contact-form-to-email
|