Custom Contact Forms - Version 6.4.3

Version Description

  • Fix file upload email bug
Download this release

Release Info

Developer tlovett1
Plugin Icon 128x128 Custom Contact Forms
Version 6.4.3
Comparing to
See all releases

Code changes from version 6.4.2 to 6.4.3

bin/production-ready.sh CHANGED
@@ -19,6 +19,7 @@ if [ "$input_variable" == "y" ]; then
19
 
20
  rm .travis.yml > /dev/null 2>&1
21
  rm Gruntfile.js > /dev/null 2>&1
 
22
  rm phpunit.xml > /dev/null 2>&1
23
  rm .jshintrc > /dev/null 2>&1
24
 
19
 
20
  rm .travis.yml > /dev/null 2>&1
21
  rm Gruntfile.js > /dev/null 2>&1
22
+ rm Dockunit.json > /dev/null 2>&1
23
  rm phpunit.xml > /dev/null 2>&1
24
  rm .jshintrc > /dev/null 2>&1
25
 
classes/class-ccf-form-handler.php CHANGED
@@ -716,6 +716,10 @@ class CCF_Form_Handler {
716
 
717
  <?php echo esc_html( stripslashes( CCF_Submission_CPT::factory()->get_pretty_field_name( $field ) ) ); ?>
718
 
 
 
 
 
719
  <?php elseif ( 'address' === $type ) : ?>
720
 
721
  <?php echo esc_html( stripslashes( CCF_Submission_CPT::factory()->get_pretty_field_address( $field ) ) ); ?>
716
 
717
  <?php echo esc_html( stripslashes( CCF_Submission_CPT::factory()->get_pretty_field_name( $field ) ) ); ?>
718
 
719
+ <?php elseif ( 'file' === $type ) : ?>
720
+
721
+ <a href="<?php echo esc_url( $field['url'] ); ?>"><?php echo esc_html( stripslashes( $field['file_name'] ) ); ?></a>
722
+
723
  <?php elseif ( 'address' === $type ) : ?>
724
 
725
  <?php echo esc_html( stripslashes( CCF_Submission_CPT::factory()->get_pretty_field_address( $field ) ) ); ?>
custom-contact-forms.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: http://www.taylorlovett.com
5
  * Description: Build beautiful custom forms the WordPress way. View live previews of your forms while you build them.
6
  * Author: Taylor Lovett
7
- * Version: 6.4.2
8
  * Author URI: http://www.taylorlovett.com
9
  */
10
 
4
  * Plugin URI: http://www.taylorlovett.com
5
  * Description: Build beautiful custom forms the WordPress way. View live previews of your forms while you build them.
6
  * Author: Taylor Lovett
7
+ * Version: 6.4.3
8
  * Author URI: http://www.taylorlovett.com
9
  */
10
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: contact form, web form, custom contact form, custom forms, captcha form, contact fields, form mailers, forms
5
  Requires at least: 3.9
6
  Tested up to: 4.2
7
- Stable tag: 6.4.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -35,6 +35,9 @@ For questions, feature requests, and support concerning the Custom Contact Forms
35
 
36
  == Changelog ==
37
 
 
 
 
38
  = 6.4.2 =
39
  * Fix IE bug where browser was prompting for download
40
 
4
  Tags: contact form, web form, custom contact form, custom forms, captcha form, contact fields, form mailers, forms
5
  Requires at least: 3.9
6
  Tested up to: 4.2
7
+ Stable tag: 6.4.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
35
 
36
  == Changelog ==
37
 
38
+ = 6.4.3 =
39
+ * Fix file upload email bug
40
+
41
  = 6.4.2 =
42
  * Fix IE bug where browser was prompting for download
43