Version Description
Fixed: Minor bug
Download this release
Release Info
Developer | webdorado |
Plugin | Form Maker by WD – user-friendly drag & drop Form Builder plugin |
Version | 1.7.64 |
Comparing to | |
See all releases |
Code changes from version 1.7.63 to 1.7.64
- form-maker.php +2 -2
- frontend/models/FMModelForm_maker.php +3 -1
- readme.txt +4 -1
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.7.
|
7 |
* Author: WebDorado
|
8 |
* Author URI: https://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -261,7 +261,7 @@ function register_fmemailverification_cpt(){
|
|
261 |
// Activate plugin.
|
262 |
function form_maker_activate() {
|
263 |
$version = get_option("wd_form_maker_version");
|
264 |
-
$new_version = '1.7.
|
265 |
global $wpdb;
|
266 |
if (!$version) {
|
267 |
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.7.64
|
7 |
* Author: WebDorado
|
8 |
* Author URI: https://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
261 |
// Activate plugin.
|
262 |
function form_maker_activate() {
|
263 |
$version = get_option("wd_form_maker_version");
|
264 |
+
$new_version = '1.7.64';
|
265 |
global $wpdb;
|
266 |
if (!$version) {
|
267 |
add_option("wd_form_maker_version", $new_version, '', 'no');
|
frontend/models/FMModelForm_maker.php
CHANGED
@@ -757,7 +757,9 @@ class FMModelForm_maker {
|
|
757 |
$untilupload = $untilupload[1];
|
758 |
$untilupload = explode('*:*w_unique*:*', $untilupload);
|
759 |
$unique_element = $untilupload[0];
|
760 |
-
|
|
|
|
|
761 |
if($unique_element == 'yes') {
|
762 |
$unique = $wpdb->get_col($wpdb->prepare("SELECT id FROM " . $wpdb->prefix . "formmaker_submits WHERE form_id= %d and element_label= %s and element_value= %s", $id, $i, addslashes($value)));
|
763 |
if ($unique) {
|
757 |
$untilupload = $untilupload[1];
|
758 |
$untilupload = explode('*:*w_unique*:*', $untilupload);
|
759 |
$unique_element = $untilupload[0];
|
760 |
+
if(strlen($unique_element)>3)
|
761 |
+
$unique_element = substr($unique_element, -3);
|
762 |
+
|
763 |
if($unique_element == 'yes') {
|
764 |
$unique = $wpdb->get_col($wpdb->prepare("SELECT id FROM " . $wpdb->prefix . "formmaker_submits WHERE form_id= %d and element_label= %s and element_value= %s", $id, $i, addslashes($value)));
|
765 |
if ($unique) {
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-form.html
|
|
4 |
Tags: form, forms, form builder, form maker, form manager, form plugin, form with recaptcha, forms plugin, multiple forms, paypal form, survey form, feedback form, feedback forms, contact form,contact form plugin, contact form builder, form creator, email form, secure form, web form, form to email, contact forms, custom forms, form widget, captcha form, wordpress contact form ,recaptcha contact form, form creation, contact form with auto reply, widget contact form, builder, feedback, contacts form plugin , custom contact form, contact us form, formular, formulario, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, input, validation, send copy, form with captcha
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.2
|
7 |
-
Stable tag: 1.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -291,6 +291,9 @@ The Form Maker (Pro version) has simple PayPal integration. This allows the user
|
|
291 |
|
292 |
== Changelog ==
|
293 |
|
|
|
|
|
|
|
294 |
= 1.7.63 =
|
295 |
New: Add-ons page logo
|
296 |
|
4 |
Tags: form, forms, form builder, form maker, form manager, form plugin, form with recaptcha, forms plugin, multiple forms, paypal form, survey form, feedback form, feedback forms, contact form,contact form plugin, contact form builder, form creator, email form, secure form, web form, form to email, contact forms, custom forms, form widget, captcha form, wordpress contact form ,recaptcha contact form, form creation, contact form with auto reply, widget contact form, builder, feedback, contacts form plugin , custom contact form, contact us form, formular, formulario, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, input, validation, send copy, form with captcha
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.2
|
7 |
+
Stable tag: 1.7.64
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
291 |
|
292 |
== Changelog ==
|
293 |
|
294 |
+
= 1.7.64 =
|
295 |
+
Fixed: Minor bug
|
296 |
+
|
297 |
= 1.7.63 =
|
298 |
New: Add-ons page logo
|
299 |
|