CommentLuv - Version 2.95

Version Description

  • October 5, 2018
  • fixed : many blogs now use caching, so we are testing out removal of a nonce check to see the impact
Download this release

Release Info

Developer bompus
Plugin Icon 128x128 CommentLuv
Version 2.95
Comparing to
See all releases

Code changes from version 2.94.8 to 2.95

Files changed (3) hide show
  1. changelog.txt +4 -0
  2. commentluv.php +4 -3
  3. readme.txt +5 -1
changelog.txt CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  = 2.94.8 =
2
  * October 5, 2018
3
  * fixed : a few PHP notice errors
1
+ = 2.95 =
2
+ * October 5, 2018
3
+ * fixed : many blogs now use caching, so we are testing out removal of a nonce check to see the impact
4
+
5
  = 2.94.8 =
6
  * October 5, 2018
7
  * fixed : a few PHP notice errors
commentluv.php CHANGED
@@ -2,7 +2,7 @@
2
  Plugin Name: CommentLuv
3
  Plugin URI: http://comluv.com/
4
  Description: Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
5
- Version: 2.94.8
6
  Author: Andy Bailey
7
  Author URI: http://www.commentluv.com
8
  Copyright (C) <2011> <Andy Bailey>
@@ -819,7 +819,8 @@ if (! class_exists ( 'commentluv' )) {
819
  if(isset($options['use_nonce'])){
820
  $checknonce = check_ajax_referer('fetch',false,false);
821
  if(!$checknonce){
822
- die(' error! not authorized '.strip_tags($_REQUEST['_ajax_nonce']));
 
823
  }
824
  }
825
  if(!$_POST['url']){
@@ -833,7 +834,7 @@ if (! class_exists ( 'commentluv' )) {
833
  @ini_set('display_errors',0);
834
  @error_reporting(0);
835
 
836
- $dir = plugin_dir_path(__FILE__);
837
  include_once($dir.'libs/SimpleCluvPie/autoloader.php');
838
 
839
  $num = 1;
2
  Plugin Name: CommentLuv
3
  Plugin URI: http://comluv.com/
4
  Description: Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
5
+ Version: 2.95
6
  Author: Andy Bailey
7
  Author URI: http://www.commentluv.com
8
  Copyright (C) <2011> <Andy Bailey>
819
  if(isset($options['use_nonce'])){
820
  $checknonce = check_ajax_referer('fetch',false,false);
821
  if(!$checknonce){
822
+ // 2.94.9 - many blogs now use caching, so we are testing out removal of a nonce check to see the impact
823
+ // die(' error! not authorized '.strip_tags($_REQUEST['_ajax_nonce']));
824
  }
825
  }
826
  if(!$_POST['url']){
834
  @ini_set('display_errors',0);
835
  @error_reporting(0);
836
 
837
+ $dir = plugin_dir_path(__FILE__);
838
  include_once($dir.'libs/SimpleCluvPie/autoloader.php');
839
 
840
  $num = 1;
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://comluv.com/about/donate
4
  Tags: commentluv, comments, last blog post, linkluv, comment luv , commentlove, comment love
5
  Requires at least: 3.6
6
  Tested up to: 5.0
7
- Stable tag: 2.94.8
8
 
9
  Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
10
 
@@ -115,6 +115,10 @@ Please tick the box marked "disable UTF8 encoding" in the technical settings are
115
 
116
  == ChangeLog ==
117
 
 
 
 
 
118
  = 2.94.8 =
119
  * October 5, 2018
120
  * fixed : a few PHP notice errors
4
  Tags: commentluv, comments, last blog post, linkluv, comment luv , commentlove, comment love
5
  Requires at least: 3.6
6
  Tested up to: 5.0
7
+ Stable tag: 2.95
8
 
9
  Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
10
 
115
 
116
  == ChangeLog ==
117
 
118
+ = 2.95 =
119
+ * October 5, 2018
120
+ * fixed : many blogs now use caching, so we are testing out removal of a nonce check to see the impact
121
+
122
  = 2.94.8 =
123
  * October 5, 2018
124
  * fixed : a few PHP notice errors