Form builder to get in touch with visitors, grow your email list and collect payments — Happyforms - Version 1.8.6

Version Description

  • Bugfix: Avoid database cleanup for upgraded users.
Download this release

Release Info

Developer thethemefoundry
Plugin Icon 128x128 Form builder to get in touch with visitors, grow your email list and collect payments — Happyforms
Version 1.8.6
Comparing to
See all releases

Code changes from version 1.8.5 to 1.8.6

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.5
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.5' );
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.6
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.6' );
17
 
18
  if ( ! function_exists( 'happyforms_plugin_file' ) ):
19
  /**
inc/core/helpers/helper-activation.php CHANGED
@@ -178,6 +178,10 @@ function happyforms_deactivate_tracking() {
178
  }
179
 
180
  function happyforms_uninstall_cleanup() {
 
 
 
 
181
  // Cleanup forms
182
  $forms = get_posts( array(
183
  'post_type' => 'happyform',
178
  }
179
 
180
  function happyforms_uninstall_cleanup() {
181
+ if ( file_exists( ABSPATH . 'wp-content/plugins/happyforms-upgrade' ) ) {
182
+ return;
183
+ }
184
+
185
  // Cleanup forms
186
  $forms = get_posts( array(
187
  'post_type' => 'happyform',
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.5\n"
6
  "Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
7
- "POT-Creation-Date: 2019-05-09 13:42:33+00:00\n"
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.6\n"
6
  "Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
7
+ "POT-Creation-Date: 2019-05-09 15:05:53+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.2
7
  Requires PHP: 5.3
8
- Stable tag: 1.8.5
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.5 =
111
  * Improvement: Added label to HoneyPot input along with screen reader text for better accessibility compliance.
112
  * Bugfix: Reply-to email handling was misbehaving.
@@ -502,6 +505,9 @@ Yep! HappyForms free isn't going anywhere but for those looking for even more po
502
 
503
  == Upgrade Notice ==
504
 
 
 
 
505
  = 1.8.5 =
506
  * Bugfixes.
507
 
5
  Requires at least: 4.8
6
  Tested up to: 5.2
7
  Requires PHP: 5.3
8
+ Stable tag: 1.8.6
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.6 =
111
+ * Bugfix: Avoid database cleanup for upgraded users.
112
+
113
  = 1.8.5 =
114
  * Improvement: Added label to HoneyPot input along with screen reader text for better accessibility compliance.
115
  * Bugfix: Reply-to email handling was misbehaving.
505
 
506
  == Upgrade Notice ==
507
 
508
+ = 1.8.6 =
509
+ * Bugfixes.
510
+
511
  = 1.8.5 =
512
  * Bugfixes.
513