Skip to content

Commit 8fd993b

Browse files
authored
Release2141 (#774)
* allow for only spans with a class attribute through (#771) * version bumps and changelog
1 parent 9323ce6 commit 8fd993b

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

constant-contact-forms.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Plugin Name: Constant Contact Forms for WordPress
1313
* Plugin URI: https://www.constantcontact.com
1414
* Description: Be a better marketer. All it takes is Constant Contact email marketing.
15-
* Version: 2.14.0
15+
* Version: 2.14.1
1616
* Author: Constant Contact
1717
* Author URI: https://www.constantcontact.com/index?pn=miwordpress
1818
* Requires PHP: 7.4
@@ -76,7 +76,7 @@ class Constant_Contact {
7676
* @since 1.0.0
7777
* @var string
7878
*/
79-
const VERSION = '2.14.0';
79+
const VERSION = '2.14.1';
8080

8181
/**
8282
* URL of plugin directory.

includes/class-admin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ public function admin_page_toolbar() {
203203
'<a class="ctct-item%s" href="%s">%s</a>',
204204
! empty( $tab['is_active'] ) ? ' is-active' : '',
205205
esc_url( $tab['url'] ),
206-
esc_html( $tab['text'] )
206+
wp_kses( $tab['text'], [ 'span' => [ 'class' => [] ] ] )
207207
);
208208
echo wp_kses( '</li>', [ 'li' => [] ] );
209209
}

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,6 +1,6 @@
11
{
22
"name": "constant-contact-forms",
3-
"version": "2.11.3",
3+
"version": "2.14.1",
44
"description": "",
55
"main": "build/index.js",
66
"engines": {

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: constantcontact, webdevstudios, tw2113, znowebdev, ggwicz, ra
33
Tags: constant contact, constant contact official, marketing, newsletter, contacts
44
Requires at least: 6.4.0
55
Tested up to: 6.8
6-
Stable tag: 2.14.0
6+
Stable tag: 2.14.1
77
License: GPLv3
88
License URI: http://www.gnu.org/licenses/gpl-3.0.html
99
Requires PHP: 7.4
@@ -49,6 +49,9 @@ Development of Constant Contact Forms plugin occurs on [GitHub](https://github.c
4949

5050
== Changelog ==
5151

52+
= 2.14.1 =
53+
* Fixed: Dashicon getting escaped instead of displaying, in custom menu spot.
54+
5255
= 2.14.0 =
5356
* Fixed: Issues with Google reCAPTCHA version 3 and forms submitted without page refresh.
5457
* Fixed: Logic around notification display in case manual intervention is needed.

0 commit comments

Comments
 (0)