Version Description
Fixed: Unexpected behavior on pressing "Enter" key on back end
Download this release
Release Info
Developer | webdorado |
Plugin | Form Maker by WD – user-friendly drag & drop Form Builder plugin |
Version | 1.9.8 |
Comparing to | |
See all releases |
Code changes from version 1.9.7 to 1.9.8
- form-maker.php +2 -2
- js/form_maker_admin.js +8 -0
- readme.txt +5 -2
form-maker.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Form Maker
|
4 |
* Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
|
5 |
* Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
|
6 |
-
* Version: 1.9.
|
7 |
* Author: WebDorado
|
8 |
* Author URI: https://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -272,7 +272,7 @@ function register_fmemailverification_cpt(){
|
|
272 |
// Activate plugin.
|
273 |
function form_maker_activate() {
|
274 |
$version = get_option("wd_form_maker_version");
|
275 |
-
$new_version = '1.9.
|
276 |
global $wpdb;
|
277 |
if (!$version) {
|
278 |
add_option("wd_form_maker_version", $new_version, '', 'no');
|
3 |
* Plugin Name: Form Maker
|
4 |
* Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
|
5 |
* Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
|
6 |
+
* Version: 1.9.8
|
7 |
* Author: WebDorado
|
8 |
* Author URI: https://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
272 |
// Activate plugin.
|
273 |
function form_maker_activate() {
|
274 |
$version = get_option("wd_form_maker_version");
|
275 |
+
$new_version = '1.9.8';
|
276 |
global $wpdb;
|
277 |
if (!$version) {
|
278 |
add_option("wd_form_maker_version", $new_version, '', 'no');
|
js/form_maker_admin.js
CHANGED
@@ -270,3 +270,11 @@ function fm_check_isnum(e) {
|
|
270 |
}
|
271 |
return true;
|
272 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
270 |
}
|
271 |
return true;
|
272 |
}
|
273 |
+
|
274 |
+
function stopRKey(evt) {
|
275 |
+
var evt = (evt) ? evt : ((event) ? event : null);
|
276 |
+
var node = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null);
|
277 |
+
if ((evt.keyCode == 13) && (node.type=="text")) {return false;}
|
278 |
+
}
|
279 |
+
|
280 |
+
document.onkeypress = stopRKey;
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Form ===
|
2 |
Contributors: webdorado
|
3 |
Donate link: https://web-dorado.com/products/wordpress-form.html
|
4 |
-
Tags:
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.5
|
7 |
-
Stable tag: 1.9.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -366,6 +366,9 @@ Email field should be used since it verifies that an entry format fulfills examp
|
|
366 |
|
367 |
== Changelog ==
|
368 |
|
|
|
|
|
|
|
369 |
= 1.9.7 =
|
370 |
Fixed: JS error on incorrect Google Maps API key
|
371 |
Added: Alert about incorrect Google Maps API key
|
1 |
=== Form ===
|
2 |
Contributors: webdorado
|
3 |
Donate link: https://web-dorado.com/products/wordpress-form.html
|
4 |
+
Tags: captcha, contact, contact form, contact forms, custom form, email, feedback, form, form builder, form manager, forms, survey
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.5
|
7 |
+
Stable tag: 1.9.8
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
366 |
|
367 |
== Changelog ==
|
368 |
|
369 |
+
= 1.9.8 =
|
370 |
+
Fixed: Unexpected behavior on pressing "Enter" key on back end
|
371 |
+
|
372 |
= 1.9.7 =
|
373 |
Fixed: JS error on incorrect Google Maps API key
|
374 |
Added: Alert about incorrect Google Maps API key
|