Version Description
- Fixed: PHP notice/warnings from undefined constant (typo).
Download this release
Release Info
Developer | jaredatch |
Plugin | Contact Form by WPForms – Drag & Drop Form Builder for WordPress |
Version | 1.5.2.2 |
Comparing to | |
See all releases |
Code changes from version 1.5.2.1 to 1.5.2.2
- changelog.txt +3 -0
- includes/admin/class-am-notification.php +1 -1
- readme.txt +4 -1
- wpforms.php +2 -2
changelog.txt
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
== Changelog ==
|
2 |
|
|
|
|
|
|
|
3 |
= 1.5.2.1 =
|
4 |
- Fixed: Required Checkbox fields asking for all inputs to be checked to pass validation.
|
5 |
|
1 |
== Changelog ==
|
2 |
|
3 |
+
= 1.5.2.2 =
|
4 |
+
- Fixed: PHP notice/warnings from undefined constant (typo).
|
5 |
+
|
6 |
= 1.5.2.1 =
|
7 |
- Fixed: Required Checkbox fields asking for all inputs to be checked to pass validation.
|
8 |
|
includes/admin/class-am-notification.php
CHANGED
@@ -173,7 +173,7 @@ if ( ! class_exists( 'AM_Notification', false ) ) {
|
|
173 |
}
|
174 |
|
175 |
// Set the option now so we can't run this again until after 24 hours.
|
176 |
-
update_option( '_amn_' . $this->plugin . '_to_check', time() + 3 *
|
177 |
}
|
178 |
}
|
179 |
|
173 |
}
|
174 |
|
175 |
// Set the option now so we can't run this again until after 24 hours.
|
176 |
+
update_option( '_amn_' . $this->plugin . '_to_check', time() + 3 * DAY_IN_SECONDS );
|
177 |
}
|
178 |
}
|
179 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: wpforms, jaredatch, smub, slaFFik
|
|
3 |
Tags: contact form, contact form plugin, forms, form builder, custom form, contact button, contact me, custom contact form, form manager, form, forms builder, forms creator, captcha, recaptcha, Akismet, email form, web form, feedback form, payment form, survey form, donation form, email submit form, message form, mailchimp, mailchimp form, aweber, aweber form, paypal, paypal form, stripe, stripe form, getresponse, getresponse form, email subscription, contact form widget, user registration form, wordpress registration, wordpress login form
|
4 |
Requires at least: 4.8
|
5 |
Tested up to: 5.1
|
6 |
-
Stable tag: 1.5.2.
|
7 |
Requires PHP: 5.3.3
|
8 |
License: GNU General Public License v2.0 or later
|
9 |
|
@@ -272,6 +272,9 @@ Syed Balkhi
|
|
272 |
|
273 |
== Changelog ==
|
274 |
|
|
|
|
|
|
|
275 |
= 1.5.2.1 =
|
276 |
- Fixed: Required Checkbox fields asking for all inputs to be checked to pass validation.
|
277 |
|
3 |
Tags: contact form, contact form plugin, forms, form builder, custom form, contact button, contact me, custom contact form, form manager, form, forms builder, forms creator, captcha, recaptcha, Akismet, email form, web form, feedback form, payment form, survey form, donation form, email submit form, message form, mailchimp, mailchimp form, aweber, aweber form, paypal, paypal form, stripe, stripe form, getresponse, getresponse form, email subscription, contact form widget, user registration form, wordpress registration, wordpress login form
|
4 |
Requires at least: 4.8
|
5 |
Tested up to: 5.1
|
6 |
+
Stable tag: 1.5.2.2
|
7 |
Requires PHP: 5.3.3
|
8 |
License: GNU General Public License v2.0 or later
|
9 |
|
272 |
|
273 |
== Changelog ==
|
274 |
|
275 |
+
= 1.5.2.2 =
|
276 |
+
- Fixed: PHP notice/warnings from undefined constant (typo).
|
277 |
+
|
278 |
= 1.5.2.1 =
|
279 |
- Fixed: Required Checkbox fields asking for all inputs to be checked to pass validation.
|
280 |
|
wpforms.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Beginner friendly WordPress contact form plugin. Use our Drag & Drop form builder to create your WordPress forms.
|
6 |
* Author: WPForms
|
7 |
* Author URI: https://wpforms.com
|
8 |
-
* Version: 1.5.2.
|
9 |
* Text Domain: wpforms-lite
|
10 |
* Domain Path: languages
|
11 |
*
|
@@ -36,7 +36,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
36 |
|
37 |
// Plugin version.
|
38 |
if ( ! defined( 'WPFORMS_VERSION' ) ) {
|
39 |
-
define( 'WPFORMS_VERSION', '1.5.2.
|
40 |
}
|
41 |
|
42 |
// Plugin Folder Path.
|
5 |
* Description: Beginner friendly WordPress contact form plugin. Use our Drag & Drop form builder to create your WordPress forms.
|
6 |
* Author: WPForms
|
7 |
* Author URI: https://wpforms.com
|
8 |
+
* Version: 1.5.2.2
|
9 |
* Text Domain: wpforms-lite
|
10 |
* Domain Path: languages
|
11 |
*
|
36 |
|
37 |
// Plugin version.
|
38 |
if ( ! defined( 'WPFORMS_VERSION' ) ) {
|
39 |
+
define( 'WPFORMS_VERSION', '1.5.2.2' );
|
40 |
}
|
41 |
|
42 |
// Plugin Folder Path.
|