Version Description
- Added indicator of form being edited
Download this release
Release Info
Developer | codepeople |
Plugin | Contact Form Email |
Version | 1.2.36 |
Comparing to | |
See all releases |
Code changes from version 1.2.35 to 1.2.36
- README.txt +5 -2
- cp-admin-int.inc.php +6 -1
- form-to-email.php +1 -1
README.txt
CHANGED
@@ -447,6 +447,9 @@ When you click a field already added into the contact form builder area, you can
|
|
447 |
|
448 |
== Changelog ==
|
449 |
|
|
|
|
|
|
|
450 |
= 1.2.34 =
|
451 |
* Removed use of external Google CDN styles
|
452 |
|
@@ -859,5 +862,5 @@ When you click a field already added into the contact form builder area, you can
|
|
859 |
|
860 |
== Upgrade Notice ==
|
861 |
|
862 |
-
= 1.2.
|
863 |
-
*
|
447 |
|
448 |
== Changelog ==
|
449 |
|
450 |
+
= 1.2.36 =
|
451 |
+
* Added indicator of form being edited
|
452 |
+
|
453 |
= 1.2.34 =
|
454 |
* Removed use of external Google CDN styles
|
455 |
|
862 |
|
863 |
== Upgrade Notice ==
|
864 |
|
865 |
+
= 1.2.36 =
|
866 |
+
* Added indicator of form being edited
|
cp-admin-int.inc.php
CHANGED
@@ -22,7 +22,12 @@ if ( 'POST' == $_SERVER['REQUEST_METHOD'] && isset( $_POST[$this->prefix.'_post_
|
|
22 |
<h1><?php echo $this->plugin_name; ?></h1>
|
23 |
|
24 |
<input type="button" name="backbtn" value="Back to items list..." onclick="document.location='admin.php?page=<?php echo $this->menu_parameter; ?>';">
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
26 |
|
27 |
<form method="post" action="" name="cpformconf">
|
28 |
<input name="<?php echo $this->prefix; ?>_post_options" type="hidden" value="1" />
|
22 |
<h1><?php echo $this->plugin_name; ?></h1>
|
23 |
|
24 |
<input type="button" name="backbtn" value="Back to items list..." onclick="document.location='admin.php?page=<?php echo $this->menu_parameter; ?>';">
|
25 |
+
|
26 |
+
<div id="normal-sortables" class="meta-box-sortables">
|
27 |
+
<hr />
|
28 |
+
<h3>These settings are for: <?php echo strip_tags($this->get_option('form_name', "fixed")); ?></h3>
|
29 |
+
</div>
|
30 |
+
|
31 |
|
32 |
<form method="post" action="" name="cpformconf">
|
33 |
<input name="<?php echo $this->prefix; ?>_post_options" type="hidden" value="1" />
|
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.36
|
7 |
Author: CodePeople
|
8 |
Author URI: https://form2email.dwbooster.com
|
9 |
Text Domain: contact-form-to-email
|