Skip to content

Commit 3e88f7e

Browse files
authored
Merge pull request #213 from BoldGrid/1.6.20-rc1
Build for release
2 parents a30d565 + 803abc3 commit 3e88f7e

File tree

9 files changed

+30
-18
lines changed

9 files changed

+30
-18
lines changed

README.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# weForms - Easy Drag & Drop Contact Form Builder For WordPress #
2-
**Contributors:** [tareq1988](https://profiles.wordpress.org/tareq1988/), [nizamuddinbabu](https://profiles.wordpress.org/nizamuddinbabu/), [boldgrid](https://profiles.wordpress.org/boldgrid/), [joemoto](https://profiles.wordpress.org/joemoto/), [jamesros161](https://profiles.wordpress.org/jamesros161/), [avonville1](https://profiles.wordpress.org/avonville1/)
3-
**Tags:** forms, contact form, contact form plugin, custom form, form builder, form, form creator, form manager, form creation, contact forms, custom forms, forms builder, forms creator, forms manager, forms creation
4-
**Requires at least:** 5.0
5-
**Requires PHP:** 7.2
6-
**Tested up to:** 6.4
7-
**Stable tag:** 1.6.19
8-
**License:** GPLv2 or later
9-
**License URI:** https://www.gnu.org/licenses/gpl-2.0.html
2+
**Contributors:** [tareq1988](https://profiles.wordpress.org/tareq1988/), [nizamuddinbabu](https://profiles.wordpress.org/nizamuddinbabu/), [boldgrid](https://profiles.wordpress.org/boldgrid/), [joemoto](https://profiles.wordpress.org/joemoto/), [jamesros161](https://profiles.wordpress.org/jamesros161/), [avonville1](https://profiles.wordpress.org/avonville1/)
3+
**Tags:** forms, contact form, contact form plugin, custom form, form builder, form, form creator, form manager, form creation, contact forms, custom forms, forms builder, forms creator, forms manager, forms creation
4+
**Requires at least:** 5.0
5+
**Requires PHP:** 7.2
6+
**Tested up to:** 6.4
7+
**Stable tag:** 1.6.20
8+
**License:** GPLv2 or later
9+
**License URI:** https://www.gnu.org/licenses/gpl-2.0.html
1010

1111
The easiest & fastest Contact Form on WordPress. Multiple templates, drag-&-drop live builder, submission listing, reCaptcha & more!
1212

@@ -237,6 +237,9 @@ weForms is the most beginner friendly and fastest WordPress contact form plugin
237237

238238
## Changelog ##
239239

240+
### Version 1.6.20 ( 12 December, 2023 ) ###
241+
* Fix: Fixes invalid nonce message when exporting entries from entry table.
242+
240243
### Version 1.6.19 ( 08 November, 2023 ) ###
241244
* Fix: Fixes Role and Nonce verification for entry exporting.
242245

assets/js-templates/spa-components.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</div>
2121

2222
<div class="alignleft actions" v-if="has_export !== 'no' && status != 'trash' ">
23-
<a class="button" :href="'admin-post.php?action=weforms_export_form_entries&selected_forms=' + id + '&_wpnonce=' + nonce" style="margin-top: 0;"><span class="dashicons dashicons-download" style="margin-top: 4px;"></span> <?php esc_html_e( 'Export Entries', 'weforms' ); ?></a>
23+
<a class="button" :href="'admin-post.php?action=weforms_export_form_entries&selected_forms=' + id + '&_wpnonce=' + '<?php echo esc_attr( wp_create_nonce( 'weforms-export-entries' ) ); ?>'" style="margin-top: 0;"><span class="dashicons dashicons-download" style="margin-top: 4px;"></span> <?php esc_html_e( 'Export Entries', 'weforms' ); ?></a>
2424
</div>
2525

2626
<div class="tablenav-pages">

assets/js/spa-app.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
'use strict';
22

3-
var _typeof26 = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
3+
var _typeof27 = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
4+
5+
var _typeof26 = typeof Symbol === "function" && _typeof27(Symbol.iterator) === "symbol" ? function (obj) {
6+
return typeof obj === "undefined" ? "undefined" : _typeof27(obj);
7+
} : function (obj) {
8+
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj === "undefined" ? "undefined" : _typeof27(obj);
9+
};
410

511
var _typeof25 = typeof Symbol === "function" && _typeof26(Symbol.iterator) === "symbol" ? function (obj) {
612
return typeof obj === "undefined" ? "undefined" : _typeof26(obj);

assets/js/spa-app.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

languages/weforms.pot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# This file is distributed under the GPL2 or later.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: weForms 1.6.19\n"
5+
"Project-Id-Version: weForms 1.6.20\n"
66
"Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
7-
"POT-Creation-Date: 2023-11-07 20:33:11+00:00\n"
7+
"POT-Creation-Date: 2023-12-11 21:36:12+00:00\n"
88
"MIME-Version: 1.0\n"
99
"Content-Type: text/plain; charset=utf-8\n"
1010
"Content-Transfer-Encoding: 8bit\n"

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "weForms",
33
"author": "BoldGrid",
4-
"version": "1.6.19",
4+
"version": "1.6.20",
55
"license": "GPL-2.0",
66
"repository": {
77
"type": "git",

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: forms, contact form, contact form plugin, custom form, form builder, form,
44
Requires at least: 5.0
55
Requires PHP: 7.2
66
Tested up to: 6.4
7-
Stable tag: 1.6.19
7+
Stable tag: 1.6.20
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -237,6 +237,9 @@ weForms is the most beginner friendly and fastest WordPress contact form plugin
237237

238238
== Changelog ==
239239

240+
= Version 1.6.20 ( 12 December, 2023 ) =
241+
* Fix: Fixes invalid nonce message when exporting entries from entry table.
242+
240243
= Version 1.6.19 ( 08 November, 2023 ) =
241244
* Fix: Fixes Role and Nonce verification for entry exporting.
242245

weforms.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Plugin URI: https://weformspro.com/
66
* Author: weForms
77
* Author URI: https://weformspro.com/
8-
* Version: 1.6.19
8+
* Version: 1.6.20
99
* License: GPL2 or later
1010
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
1111
* Text Domain: weforms
@@ -55,7 +55,7 @@ final class WeForms {
5555
*
5656
* @var string
5757
*/
58-
public $version = '1.6.19';
58+
public $version = '1.6.20';
5959

6060
/**
6161
* Form field value seperator

0 commit comments

Comments
 (0)