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

Version Description

  • A division-by-zero bug prevented table part from working correctly.
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.5.9
Comparing to
See all releases

Code changes from version 1.5.8 to 1.5.9

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.5.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.5.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.5.9
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.5.9' );
17
 
18
  if ( ! function_exists( 'happyforms_plugin_file' ) ):
19
  /**
inc/templates/parts/frontend-table.php CHANGED
@@ -11,7 +11,7 @@
11
  <div class="happyforms-part__el">
12
  <?php
13
  $columns = happyforms_get_part_options( $part['columns'], $part, $form );
14
- $columns_num = ( is_array( $columns ) ) ? sizeof( $columns ) : 1;
15
  ?>
16
  <div class="happyforms-table">
17
  <div class="happyforms-table__row happyforms-table__row--head">
11
  <div class="happyforms-part__el">
12
  <?php
13
  $columns = happyforms_get_part_options( $part['columns'], $part, $form );
14
+ $columns_num = max( count( $columns ), 1 );
15
  ?>
16
  <div class="happyforms-table">
17
  <div class="happyforms-table__row happyforms-table__row--head">
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.5.8\n"
6
  "Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
7
- "POT-Creation-Date: 2018-08-17 15:17:10+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.5.9\n"
6
  "Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
7
+ "POT-Creation-Date: 2018-08-21 11:02:04+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: 4.9.7
7
  Requires PHP: 5.2.4
8
- Stable tag: 1.5.8
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -75,6 +75,9 @@ Absolutely! HappyForms gets out of the way and is designed to work with any them
75
 
76
  == Changelog ==
77
 
 
 
 
78
  = 1.5.8 =
79
  * Bugfix: form serialized data missed URI encoding.
80
 
@@ -215,6 +218,9 @@ Absolutely! HappyForms gets out of the way and is designed to work with any them
215
 
216
  == Upgrade Notice ==
217
 
 
 
 
218
  = 1.5.8 =
219
  * Bugfixes.
220
 
5
  Requires at least: 4.8
6
  Tested up to: 4.9.7
7
  Requires PHP: 5.2.4
8
+ Stable tag: 1.5.9
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
75
 
76
  == Changelog ==
77
 
78
+ = 1.5.9 =
79
+ * A division-by-zero bug prevented table part from working correctly.
80
+
81
  = 1.5.8 =
82
  * Bugfix: form serialized data missed URI encoding.
83
 
218
 
219
  == Upgrade Notice ==
220
 
221
+ = 1.5.9 =
222
+ * Bugfixes.
223
+
224
  = 1.5.8 =
225
  * Bugfixes.
226