Version Description
(2020-12-24) =
- Fixed links in review responses to allow the "rel" attribute
- Happy Holidays!
Download this release
Release Info
Developer | geminilabs |
Plugin | Site Reviews |
Version | 5.4.1 |
Comparing to | |
See all releases |
Code changes from version 5.4.0 to 5.4.1
- plugin/Controllers/MetaboxController.php +1 -1
- readme.txt +6 -1
- site-reviews.php +1 -1
plugin/Controllers/MetaboxController.php
CHANGED
@@ -205,7 +205,7 @@ class MetaboxController
|
|
205 |
}
|
206 |
$response = strval(Helper::filterInput('response'));
|
207 |
$response = trim(wp_kses($response, [
|
208 |
-
'a' => ['href' => [], 'target' => [], 'title' => []],
|
209 |
'em' => [],
|
210 |
'strong' => [],
|
211 |
]));
|
205 |
}
|
206 |
$response = strval(Helper::filterInput('response'));
|
207 |
$response = trim(wp_kses($response, [
|
208 |
+
'a' => ['href' => [], 'rel' => [], 'target' => [], 'title' => []],
|
209 |
'em' => [],
|
210 |
'strong' => [],
|
211 |
]));
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: reviews, ratings, testimonials, business reviews, product reviews, stars,
|
|
5 |
Tested up to: 5.6
|
6 |
Requires at least: 5.5
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 5.4.
|
9 |
License: GPLv3
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -113,6 +113,11 @@ All documentation can be found in the "Help" page of the plugin. If your questio
|
|
113 |
|
114 |
== Changelog ==
|
115 |
|
|
|
|
|
|
|
|
|
|
|
116 |
= 5.4.0 (2020-12-22) =
|
117 |
|
118 |
- Added the "schema_identifier" meta key which can be used to set a custom '@id' schema property with the Custom Fields metabox
|
5 |
Tested up to: 5.6
|
6 |
Requires at least: 5.5
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 5.4.1
|
9 |
License: GPLv3
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
113 |
|
114 |
== Changelog ==
|
115 |
|
116 |
+
= 5.4.1 (2020-12-24) =
|
117 |
+
|
118 |
+
- Fixed links in review responses to allow the "rel" attribute
|
119 |
+
- Happy Holidays! 🎄✨🍾
|
120 |
+
|
121 |
= 5.4.0 (2020-12-22) =
|
122 |
|
123 |
- Added the "schema_identifier" meta key which can be used to set a custom '@id' schema property with the Custom Fields metabox
|
site-reviews.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
* Plugin Name: Site Reviews
|
8 |
* Plugin URI: https://wordpress.org/plugins/site-reviews
|
9 |
* Description: Receive and display reviews on your website
|
10 |
-
* Version: 5.4.
|
11 |
* Author: Paul Ryley
|
12 |
* Author URI: https://geminilabs.io
|
13 |
* License: GPL2
|
7 |
* Plugin Name: Site Reviews
|
8 |
* Plugin URI: https://wordpress.org/plugins/site-reviews
|
9 |
* Description: Receive and display reviews on your website
|
10 |
+
* Version: 5.4.1
|
11 |
* Author: Paul Ryley
|
12 |
* Author URI: https://geminilabs.io
|
13 |
* License: GPL2
|