Custom Contact Forms - Version 6.4.7

Version Description

  • json_encode not wp_json_encode
Download this release

Release Info

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

Code changes from version 6.4.6 to 6.4.7

README.md CHANGED
@@ -223,6 +223,14 @@ Run the plugin tests:
223
  phpunit
224
  ```
225
 
 
 
 
 
 
 
 
 
226
  #### Extending the Plugin
227
 
228
  Coming soon.
223
  phpunit
224
  ```
225
 
226
+ ##### Dockunit
227
+
228
+ This plugin contains a valid [Dockunit](https://www.npmjs.com/package/dockunit) file for running unit tests across a variety of environments locally (PHP 5.2 and 5.5). You can use Dockunit (after installing it via npm) by running:
229
+
230
+ ```bash
231
+ dockunit
232
+ ```
233
+
234
  #### Extending the Plugin
235
 
236
  Coming soon.
classes/class-ccf-form-handler.php CHANGED
@@ -565,7 +565,7 @@ class CCF_Form_Handler {
565
 
566
  if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
567
  // Hack to fix IE prompting for download
568
- echo wp_json_encode( $submission_response );
569
  wp_die();
570
  } else {
571
  if ( ! empty( $submission_response['completion_redirect_url'] ) ) {
565
 
566
  if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
567
  // Hack to fix IE prompting for download
568
+ echo json_encode( $submission_response );
569
  wp_die();
570
  } else {
571
  if ( ! empty( $submission_response['completion_redirect_url'] ) ) {
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.6
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.7
8
  * Author URI: http://www.taylorlovett.com
9
  */
10
 
languages/custom-contact-forms.mo CHANGED
Binary file
languages/custom-contact-forms.po CHANGED
@@ -5,8 +5,8 @@ msgstr ""
5
  "Project-Id-Version: Custom Contact Forms\n"
6
  "Report-Msgid-Bugs-To: https://github.com/tlovett1/editorial-access-manager/"
7
  "issues\n"
8
- "POT-Creation-Date: 2015-02-24 00:23-0500\n"
9
- "PO-Revision-Date: 2015-02-24 00:23-0500\n"
10
  "Last-Translator: Taylor Lovett <tlovett88@gmail.com>\n"
11
  "Language-Team: LANGUAGE <LL@li.org>\n"
12
  "Language: en\n"
5
  "Project-Id-Version: Custom Contact Forms\n"
6
  "Report-Msgid-Bugs-To: https://github.com/tlovett1/editorial-access-manager/"
7
  "issues\n"
8
+ "POT-Creation-Date: 2015-02-24 00:27-0500\n"
9
+ "PO-Revision-Date: 2015-02-24 00:27-0500\n"
10
  "Last-Translator: Taylor Lovett <tlovett88@gmail.com>\n"
11
  "Language-Team: LANGUAGE <LL@li.org>\n"
12
  "Language: en\n"
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.6
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.6 =
39
  * Add error modal text for HTTP 501 error code
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.7
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.7 =
39
+ * json_encode not wp_json_encode
40
+
41
  = 6.4.6 =
42
  * Add error modal text for HTTP 501 error code
43