Version Description
- FIXED: security fix
Download this release
Release Info
Developer | Dudo |
Plugin | Yasr – Yet Another Stars Rating |
Version | 1.7.1 |
Comparing to | |
See all releases |
Code changes from version 1.7.0 to 1.7.1
- lib/yasr-ajax-functions.php +1 -1
- readme.txt +5 -2
- yet-another-stars-rating.php +2 -2
lib/yasr-ajax-functions.php
CHANGED
@@ -1202,7 +1202,7 @@ if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // E
|
|
1202 |
}
|
1203 |
|
1204 |
if ( ! wp_verify_nonce( $nonce, 'yasr_nonce_insert_visitor_rating_multiset' ) ) {
|
1205 |
-
|
1206 |
}
|
1207 |
|
1208 |
|
1202 |
}
|
1203 |
|
1204 |
if ( ! wp_verify_nonce( $nonce, 'yasr_nonce_insert_visitor_rating_multiset' ) ) {
|
1205 |
+
die( 'Security check' );
|
1206 |
}
|
1207 |
|
1208 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Requires at least: 4.3.0
|
|
5 |
Contributors: Dudo
|
6 |
Tested up to: 5.0
|
7 |
Requires PHP: 5.3
|
8 |
-
Stable tag: 1.7.
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
Boost the way people interact with your website, e-commerce or blog with an easy and intuitive WordPress rating system!
|
@@ -108,6 +108,9 @@ Of course not: you can easily add it on the visual editor just by clicking the "
|
|
108 |
|
109 |
The full changelog can be found in the plugin's directory. Recent entries:
|
110 |
|
|
|
|
|
|
|
111 |
= 1.7.0 =
|
112 |
* FIXED: Yasr overall rating not showing up if custom text isn't set
|
113 |
|
@@ -158,4 +161,4 @@ You can enable/disable this in every moment in the settings
|
|
158 |
|
159 |
= Additional Info =
|
160 |
Svg star icon made by [Freepik](http://www.freepik.com)
|
161 |
-
from [www.flaticon.com](https://www.flaticon.com/)is licensed by [CC 3.0 BY](http://creativecommons.org/licenses/by/3.0/)
|
5 |
Contributors: Dudo
|
6 |
Tested up to: 5.0
|
7 |
Requires PHP: 5.3
|
8 |
+
Stable tag: 1.7.1
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
Boost the way people interact with your website, e-commerce or blog with an easy and intuitive WordPress rating system!
|
108 |
|
109 |
The full changelog can be found in the plugin's directory. Recent entries:
|
110 |
|
111 |
+
= 1.7.1 =
|
112 |
+
* FIXED: security fix
|
113 |
+
|
114 |
= 1.7.0 =
|
115 |
* FIXED: Yasr overall rating not showing up if custom text isn't set
|
116 |
|
161 |
|
162 |
= Additional Info =
|
163 |
Svg star icon made by [Freepik](http://www.freepik.com)
|
164 |
+
from [www.flaticon.com](https://www.flaticon.com/)is licensed by [CC 3.0 BY](http://creativecommons.org/licenses/by/3.0/)
|
yet-another-stars-rating.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Yet Another Stars Rating
|
5 |
* Plugin URI: http://wordpress.org/plugins/yet-another-stars-rating/
|
6 |
* Description: Yet Another Stars Rating turn your WordPress into a complete review website.
|
7 |
-
* Version: 1.7.
|
8 |
* Author: Dario Curvino
|
9 |
* Author URI: https://yetanotherstarsrating.com/
|
10 |
* Text Domain: yet-another-stars-rating
|
@@ -74,7 +74,7 @@ function yasr_fs()
|
|
74 |
yasr_fs();
|
75 |
// Signal that SDK was initiated.
|
76 |
do_action( 'yasr_fs_loaded' );
|
77 |
-
define( 'YASR_VERSION_NUM', '1.7.
|
78 |
//Plugin relative path
|
79 |
define( "YASR_ABSOLUTE_PATH", dirname( __FILE__ ) );
|
80 |
//Plugin RELATIVE PATH without slashes (just the directory's name)
|
4 |
* Plugin Name: Yet Another Stars Rating
|
5 |
* Plugin URI: http://wordpress.org/plugins/yet-another-stars-rating/
|
6 |
* Description: Yet Another Stars Rating turn your WordPress into a complete review website.
|
7 |
+
* Version: 1.7.1
|
8 |
* Author: Dario Curvino
|
9 |
* Author URI: https://yetanotherstarsrating.com/
|
10 |
* Text Domain: yet-another-stars-rating
|
74 |
yasr_fs();
|
75 |
// Signal that SDK was initiated.
|
76 |
do_action( 'yasr_fs_loaded' );
|
77 |
+
define( 'YASR_VERSION_NUM', '1.7.1' );
|
78 |
//Plugin relative path
|
79 |
define( "YASR_ABSOLUTE_PATH", dirname( __FILE__ ) );
|
80 |
//Plugin RELATIVE PATH without slashes (just the directory's name)
|