Version Description
- Admin interface improvements
Download this release
Release Info
Developer | codepeople |
Plugin | Contact Form Email |
Version | 1.2.31 |
Comparing to | |
See all releases |
Code changes from version 1.2.30 to 1.2.31
- README.txt +5 -2
- cp-admin-int.inc.php +9 -27
- form-to-email.php +1 -1
README.txt
CHANGED
@@ -442,6 +442,9 @@ When you click a field already added into the contact form builder area, you can
|
|
442 |
|
443 |
== Changelog ==
|
444 |
|
|
|
|
|
|
|
445 |
= 1.2.30 =
|
446 |
* Fixed bug in graphic report
|
447 |
|
@@ -842,5 +845,5 @@ When you click a field already added into the contact form builder area, you can
|
|
842 |
|
843 |
== Upgrade Notice ==
|
844 |
|
845 |
-
= 1.2.
|
846 |
-
*
|
442 |
|
443 |
== Changelog ==
|
444 |
|
445 |
+
= 1.2.31 =
|
446 |
+
* Admin interface improvements
|
447 |
+
|
448 |
= 1.2.30 =
|
449 |
* Fixed bug in graphic report
|
450 |
|
845 |
|
846 |
== Upgrade Notice ==
|
847 |
|
848 |
+
= 1.2.31 =
|
849 |
+
* Admin interface improvements
|
cp-admin-int.inc.php
CHANGED
@@ -337,41 +337,23 @@ if ( 'POST' == $_SERVER['REQUEST_METHOD'] && isset( $_POST[$this->prefix.'_post_
|
|
337 |
</td>
|
338 |
</tr>
|
339 |
<tr valign="top">
|
340 |
-
<
|
341 |
-
<td><input type="text" required name="vs_text_is_required" size="40" value="<?php echo esc_attr($this->get_option('vs_text_is_required', CP_CFEMAIL_DEFAULT_vs_text_is_required)); ?>" /></td>
|
342 |
</tr>
|
343 |
<tr valign="top">
|
344 |
-
<
|
345 |
-
<td
|
346 |
-
</tr>
|
347 |
-
<tr valign="top">
|
348 |
-
<th scope="row">"is valid captcha" text:</th>
|
349 |
-
<td><input type="text" name="cv_text_enter_valid_captcha" size="70" value="<?php echo esc_attr($this->get_option('cv_text_enter_valid_captcha', CP_CFEMAIL_DEFAULT_cv_text_enter_valid_captcha)); ?>" /></td>
|
350 |
-
</tr>
|
351 |
-
|
352 |
-
<tr valign="top">
|
353 |
-
<th scope="row">"is valid date (mm/dd/yyyy)" text:</th>
|
354 |
-
<td><input type="text" name="vs_text_datemmddyyyy" size="70" value="<?php echo esc_attr($this->get_option('vs_text_datemmddyyyy', CP_CFEMAIL_DEFAULT_vs_text_datemmddyyyy)); ?>" /></td>
|
355 |
-
</tr>
|
356 |
-
<tr valign="top">
|
357 |
-
<th scope="row">"is valid date (dd/mm/yyyy)" text:</th>
|
358 |
-
<td><input type="text" name="vs_text_dateddmmyyyy" size="70" value="<?php echo esc_attr($this->get_option('vs_text_dateddmmyyyy', CP_CFEMAIL_DEFAULT_vs_text_dateddmmyyyy)); ?>" /></td>
|
359 |
-
</tr>
|
360 |
-
<tr valign="top">
|
361 |
-
<th scope="row">"is number" text:</th>
|
362 |
-
<td><input type="text" name="vs_text_number" size="70" value="<?php echo esc_attr($this->get_option('vs_text_number', CP_CFEMAIL_DEFAULT_vs_text_number)); ?>" /></td>
|
363 |
</tr>
|
364 |
<tr valign="top">
|
365 |
-
<
|
366 |
-
<td
|
367 |
</tr>
|
368 |
<tr valign="top">
|
369 |
-
<
|
370 |
-
<td
|
371 |
</tr>
|
372 |
<tr valign="top">
|
373 |
-
<
|
374 |
-
<td
|
375 |
</tr>
|
376 |
|
377 |
</table>
|
337 |
</td>
|
338 |
</tr>
|
339 |
<tr valign="top">
|
340 |
+
<td scope="row">"is required" text:<br /><input type="text" required name="vs_text_is_required" size="40" value="<?php echo esc_attr($this->get_option('vs_text_is_required', CP_CFEMAIL_DEFAULT_vs_text_is_required)); ?>" /></td>
|
|
|
341 |
</tr>
|
342 |
<tr valign="top">
|
343 |
+
<td scope="row">"is email" text:<br /><input type="text" required name="vs_text_is_email" size="50" value="<?php echo esc_attr($this->get_option('vs_text_is_email', CP_CFEMAIL_DEFAULT_vs_text_is_email)); ?>" /></td>
|
344 |
+
<td scope="row">"is valid captcha" text:<br /><input type="text" name="cv_text_enter_valid_captcha" size="50" value="<?php echo esc_attr($this->get_option('cv_text_enter_valid_captcha', CP_CFEMAIL_DEFAULT_cv_text_enter_valid_captcha)); ?>" /></td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
345 |
</tr>
|
346 |
<tr valign="top">
|
347 |
+
<td scope="row">"is valid date (mm/dd/yyyy)" text:<br /><input type="text" name="vs_text_datemmddyyyy" size="50" value="<?php echo esc_attr($this->get_option('vs_text_datemmddyyyy', CP_CFEMAIL_DEFAULT_vs_text_datemmddyyyy)); ?>" /></td>
|
348 |
+
<td scope="row">"is valid date (dd/mm/yyyy)" text:<br /><input type="text" name="vs_text_dateddmmyyyy" size="50" value="<?php echo esc_attr($this->get_option('vs_text_dateddmmyyyy', CP_CFEMAIL_DEFAULT_vs_text_dateddmmyyyy)); ?>" /></td>
|
349 |
</tr>
|
350 |
<tr valign="top">
|
351 |
+
<td scope="row">"is number" text:<br /><input type="text" name="vs_text_number" size="50" value="<?php echo esc_attr($this->get_option('vs_text_number', CP_CFEMAIL_DEFAULT_vs_text_number)); ?>" /></td>
|
352 |
+
<td scope="row">"only digits" text:<br /><input type="text" name="vs_text_digits" size="50" value="<?php echo esc_attr($this->get_option('vs_text_digits', CP_CFEMAIL_DEFAULT_vs_text_digits)); ?>" /></td>
|
353 |
</tr>
|
354 |
<tr valign="top">
|
355 |
+
<td scope="row">"under maximum" text:<br /><input type="text" name="vs_text_max" size="50" value="<?php echo esc_attr($this->get_option('vs_text_max', CP_CFEMAIL_DEFAULT_vs_text_max)); ?>" /></td>
|
356 |
+
<td scope="row">"over minimum" text:<br /><input type="text" name="vs_text_min" size="50" value="<?php echo esc_attr($this->get_option('vs_text_min', CP_CFEMAIL_DEFAULT_vs_text_min)); ?>" /></td>
|
357 |
</tr>
|
358 |
|
359 |
</table>
|
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.31
|
7 |
Author: CodePeople
|
8 |
Author URI: https://form2email.dwbooster.com
|
9 |
Text Domain: contact-form-to-email
|