Version Description
bug fixed on form options
Download this release
Release Info
Developer | webdorado |
Plugin | Form Maker by WD – user-friendly drag & drop Form Builder plugin |
Version | 1.7.4 |
Comparing to | |
See all releases |
Code changes from version 1.7.3 to 1.7.4
- css/form_maker_tables.css +4 -0
- form-maker.php +1 -1
- frontend/models/FMModelForm_maker.php +5 -7
- readme.txt +5 -1
css/form_maker_tables.css
CHANGED
@@ -259,6 +259,7 @@ div.wd_preview a {
|
|
259 |
|
260 |
.form_maker_icon {
|
261 |
background-image: url("../images/formmakerLogo-48.png");
|
|
|
262 |
border: none;
|
263 |
float: left;
|
264 |
height: 48px;
|
@@ -268,6 +269,7 @@ div.wd_preview a {
|
|
268 |
|
269 |
.block_icon {
|
270 |
background-image: url("../images/block-icon.png");
|
|
|
271 |
border: none;
|
272 |
float: left;
|
273 |
height: 32px;
|
@@ -277,6 +279,7 @@ div.wd_preview a {
|
|
277 |
|
278 |
.theme_icon {
|
279 |
background-image: url("../images/theme-icon.png");
|
|
|
280 |
border: none;
|
281 |
float: left;
|
282 |
height: 32px;
|
@@ -286,6 +289,7 @@ div.wd_preview a {
|
|
286 |
|
287 |
.uninstall_icon {
|
288 |
background-image: url("../images/uninstall-icon.png");
|
|
|
289 |
border: none;
|
290 |
float: left;
|
291 |
height: 32px;
|
259 |
|
260 |
.form_maker_icon {
|
261 |
background-image: url("../images/formmakerLogo-48.png");
|
262 |
+
background-repeat: no-repeat;
|
263 |
border: none;
|
264 |
float: left;
|
265 |
height: 48px;
|
269 |
|
270 |
.block_icon {
|
271 |
background-image: url("../images/block-icon.png");
|
272 |
+
background-repeat: no-repeat;
|
273 |
border: none;
|
274 |
float: left;
|
275 |
height: 32px;
|
279 |
|
280 |
.theme_icon {
|
281 |
background-image: url("../images/theme-icon.png");
|
282 |
+
background-repeat: no-repeat;
|
283 |
border: none;
|
284 |
float: left;
|
285 |
height: 32px;
|
289 |
|
290 |
.uninstall_icon {
|
291 |
background-image: url("../images/uninstall-icon.png");
|
292 |
+
background-repeat: no-repeat;
|
293 |
border: none;
|
294 |
float: left;
|
295 |
height: 32px;
|
form-maker.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Form Maker
|
4 |
* Plugin URI: http://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: http://web-dorado.com/
|
8 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
*/
|
3 |
* Plugin Name: Form Maker
|
4 |
* Plugin URI: http://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.4
|
7 |
* Author: http://web-dorado.com/
|
8 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
*/
|
frontend/models/FMModelForm_maker.php
CHANGED
@@ -664,18 +664,15 @@ class FMModelForm_maker {
|
|
664 |
}
|
665 |
}
|
666 |
}
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
$r = $wpdb->prefix . "formmaker_submits";
|
671 |
-
|
672 |
-
$save_or_no = $wpdb->insert($r, array(
|
673 |
'form_id' => $id,
|
674 |
'element_label' => $i,
|
675 |
'element_value' => stripslashes($value),
|
676 |
'group_id' => ($max + 1),
|
677 |
'date' => date('Y-m-d H:i:s'),
|
678 |
-
'ip' => $
|
679 |
), array(
|
680 |
'%d',
|
681 |
'%s',
|
@@ -684,6 +681,7 @@ class FMModelForm_maker {
|
|
684 |
'%s',
|
685 |
'%s'
|
686 |
));
|
|
|
687 |
if (!$save_or_no) {
|
688 |
return FALSE;
|
689 |
}
|
664 |
}
|
665 |
}
|
666 |
}
|
667 |
+
$save_or_no = TRUE;
|
668 |
+
if ($form->savedb) {
|
669 |
+
$save_or_no = $wpdb->insert($wpdb->prefix . "formmaker_submits", array(
|
|
|
|
|
|
|
670 |
'form_id' => $id,
|
671 |
'element_label' => $i,
|
672 |
'element_value' => stripslashes($value),
|
673 |
'group_id' => ($max + 1),
|
674 |
'date' => date('Y-m-d H:i:s'),
|
675 |
+
'ip' => $_SERVER['REMOTE_ADDR'],
|
676 |
), array(
|
677 |
'%d',
|
678 |
'%s',
|
681 |
'%s',
|
682 |
'%s'
|
683 |
));
|
684 |
+
}
|
685 |
if (!$save_or_no) {
|
686 |
return FALSE;
|
687 |
}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://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
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.9
|
7 |
-
Stable tag: 1.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -211,6 +211,10 @@ In case you are upgrading your Form Maker to paid version, but still want to pre
|
|
211 |
8. Form Maker - Select form Columns
|
212 |
|
213 |
== Changelog ==
|
|
|
|
|
|
|
|
|
214 |
= 1.7.2 =
|
215 |
improve themes
|
216 |
|
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
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.9
|
7 |
+
Stable tag: 1.7.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
211 |
8. Form Maker - Select form Columns
|
212 |
|
213 |
== Changelog ==
|
214 |
+
|
215 |
+
= 1.7.4 =
|
216 |
+
bug fixed on form options
|
217 |
+
|
218 |
= 1.7.2 =
|
219 |
improve themes
|
220 |
|