Version Description
- Bugfix: A typo in helper file was preventing submissions from completing.
Download this release
Release Info
Developer | thethemefoundry |
Plugin | Form builder to get in touch with visitors, grow your email list and collect payments — Happyforms |
Version | 1.8.3 |
Comparing to | |
See all releases |
Code changes from version 1.8.2 to 1.8.3
- happyforms.php +2 -2
- inc/classes/class-message-controller.php +1 -1
- languages/happyforms.pot +2 -2
- readme.txt +7 -1
happyforms.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Plugin URI: https://happyforms.me
|
6 |
* Description: Your friendly drag and drop contact form builder for creating contact forms, lead generation forms, feedback forms, quote forms, survey forms and more!
|
7 |
* Author: The Theme Foundry
|
8 |
-
* Version: 1.8.
|
9 |
* Author URI: https://thethemefoundry.com
|
10 |
* Upgrade URI: https://thethemefoundry.com
|
11 |
*/
|
@@ -13,7 +13,7 @@
|
|
13 |
/**
|
14 |
* The current version of the plugin.
|
15 |
*/
|
16 |
-
define( 'HAPPYFORMS_VERSION', '1.8.
|
17 |
|
18 |
if ( ! function_exists( 'happyforms_plugin_file' ) ):
|
19 |
/**
|
5 |
* Plugin URI: https://happyforms.me
|
6 |
* Description: Your friendly drag and drop contact form builder for creating contact forms, lead generation forms, feedback forms, quote forms, survey forms and more!
|
7 |
* Author: The Theme Foundry
|
8 |
+
* Version: 1.8.3
|
9 |
* Author URI: https://thethemefoundry.com
|
10 |
* Upgrade URI: https://thethemefoundry.com
|
11 |
*/
|
13 |
/**
|
14 |
* The current version of the plugin.
|
15 |
*/
|
16 |
+
define( 'HAPPYFORMS_VERSION', '1.8.3' );
|
17 |
|
18 |
if ( ! function_exists( 'happyforms_plugin_file' ) ):
|
19 |
/**
|
inc/classes/class-message-controller.php
CHANGED
@@ -605,7 +605,7 @@ class HappyForms_Message_Controller {
|
|
605 |
$email_message->set_reply_to( $reply_to );
|
606 |
$email_message->set_subject( $form['confirmation_email_subject'] );
|
607 |
$part_id = $email_part['id'];
|
608 |
-
$to = happyforms_get_message_part_value( $message[
|
609 |
$email_message->set_to( $to );
|
610 |
|
611 |
ob_start();
|
605 |
$email_message->set_reply_to( $reply_to );
|
606 |
$email_message->set_subject( $form['confirmation_email_subject'] );
|
607 |
$part_id = $email_part['id'];
|
608 |
+
$to = happyforms_get_message_part_value( $message[$part_id], $email_part );
|
609 |
$email_message->set_to( $to );
|
610 |
|
611 |
ob_start();
|
languages/happyforms.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the HappyForms package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: HappyForms 1.8.
|
6 |
"Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
|
7 |
-
"POT-Creation-Date: 2019-05-02
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
2 |
# This file is distributed under the same license as the HappyForms package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: HappyForms 1.8.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
|
7 |
+
"POT-Creation-Date: 2019-05-02 12:10:12+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: contact, contact form, email, feedback form, form, form builder, custom fo
|
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 5.1
|
7 |
Requires PHP: 5.3
|
8 |
-
Stable tag: 1.8.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -107,6 +107,9 @@ Yep! HappyForms free isn't going anywhere but for those looking for even more po
|
|
107 |
|
108 |
== Changelog ==
|
109 |
|
|
|
|
|
|
|
110 |
= 1.8.2 =
|
111 |
* Bugfix: Wrong email template path was preventing submissions from completing.
|
112 |
|
@@ -489,6 +492,9 @@ Yep! HappyForms free isn't going anywhere but for those looking for even more po
|
|
489 |
|
490 |
== Upgrade Notice ==
|
491 |
|
|
|
|
|
|
|
492 |
= 1.8.2 =
|
493 |
* Bugfixes.
|
494 |
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 5.1
|
7 |
Requires PHP: 5.3
|
8 |
+
Stable tag: 1.8.3
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
107 |
|
108 |
== Changelog ==
|
109 |
|
110 |
+
= 1.8.3 =
|
111 |
+
* Bugfix: A typo in helper file was preventing submissions from completing.
|
112 |
+
|
113 |
= 1.8.2 =
|
114 |
* Bugfix: Wrong email template path was preventing submissions from completing.
|
115 |
|
492 |
|
493 |
== Upgrade Notice ==
|
494 |
|
495 |
+
= 1.8.3 =
|
496 |
+
* Bugfixes.
|
497 |
+
|
498 |
= 1.8.2 =
|
499 |
* Bugfixes.
|
500 |
|