CommentLuv - Version 2.93

Version Description

  • fixed : removed deprecated .live from javascript
Download this release

Release Info

Developer commentluv
Plugin Icon 128x128 CommentLuv
Version 2.93
Comparing to
See all releases

Code changes from version 2.92.9 to 2.93

Files changed (3) hide show
  1. commentluv.php +3 -3
  2. js/commentluv.js +2 -1
  3. readme.txt +7 -3
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.92.9
6
  Author: Andy Bailey
7
  Author URI: http://www.commentluv.com
8
  Copyright (C) <2011> <Andy Bailey>
@@ -28,7 +28,7 @@ if (! class_exists ( 'commentluv' )) {
28
  var $plugin_url;
29
  var $plugin_dir;
30
  var $db_option = 'commentluv_options';
31
- var $version = "2.92.9";
32
  var $slug = 'commentluv-options';
33
  var $localize;
34
  var $is_commentluv_request = false;
@@ -870,7 +870,7 @@ if (! class_exists ( 'commentluv' )) {
870
  // fetch the feed
871
  $rss->init();
872
  $su = $rss->subscribe_url();
873
- $ferror = $rss->error();
874
  // try a fall back and add /?feed=rss2 to the end of url if the found subscribe url hasn't already got it
875
  // also try known blogspot feed location if this is a blogspot url
876
  if($ferror || strstr($ferror,'could not be found') && !strstr($su,'feed')){
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.93
6
  Author: Andy Bailey
7
  Author URI: http://www.commentluv.com
8
  Copyright (C) <2011> <Andy Bailey>
28
  var $plugin_url;
29
  var $plugin_dir;
30
  var $db_option = 'commentluv_options';
31
+ var $version = "2.93";
32
  var $slug = 'commentluv-options';
33
  var $localize;
34
  var $is_commentluv_request = false;
870
  // fetch the feed
871
  $rss->init();
872
  $su = $rss->subscribe_url();
873
+ $ferror = $rss->error();
874
  // try a fall back and add /?feed=rss2 to the end of url if the found subscribe url hasn't already got it
875
  // also try known blogspot feed location if this is a blogspot url
876
  if($ferror || strstr($ferror,'could not be found') && !strstr($su,'feed')){
js/commentluv.js CHANGED
@@ -63,7 +63,8 @@ jQuery(document).ready(function(){
63
  // add info panel to page
64
  jQuery("body").append('<span id="heart_tip_big" style="display: none;position:absolute; z-index: 1001; background-color: ' + cl_settings['infoback'] + '; color: ' + cl_settings['infotext'] + '; width: 62px;"></span>');
65
  // hover over to see raw file wrapper open
66
- jQuery('.rawfilewrap').live('hover',function(){
 
67
  jQuery('.rawfile').toggle();
68
  });
69
 
63
  // add info panel to page
64
  jQuery("body").append('<span id="heart_tip_big" style="display: none;position:absolute; z-index: 1001; background-color: ' + cl_settings['infoback'] + '; color: ' + cl_settings['infotext'] + '; width: 62px;"></span>');
65
  // hover over to see raw file wrapper open
66
+ //jQuery('.rawfilewrap').live('hover',function(){
67
+ jQuery('#commentluv').on('hover','.rawfilewrap',function(){
68
  jQuery('.rawfile').toggle();
69
  });
70
 
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.0
6
  Tested up to: 3.6.1
7
- Stable tag: 2.92.9
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
 
@@ -87,6 +87,10 @@ Please see the videos in the settings page for explanations of how they work.
87
 
88
  == ChangeLog ==
89
 
 
 
 
 
90
  = 2.92.9 =
91
 
92
  * updated : settings page panel for ads
@@ -401,9 +405,9 @@ Please see the videos in the settings page for explanations of how they work.
401
 
402
  == Upgrade Notice ==
403
 
404
- = 2.92.9 =
405
 
406
- updated compatibility
407
 
408
  == Configuration ==
409
 
4
  Tags: commentluv, comments, last blog post, linkluv, comment luv , commentlove, comment love
5
  Requires at least: 3.0
6
  Tested up to: 3.6.1
7
+ Stable tag: 2.93
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
 
87
 
88
  == ChangeLog ==
89
 
90
+ = 2.93 =
91
+
92
+ * fixed : removed deprecated .live from javascript
93
+
94
  = 2.92.9 =
95
 
96
  * updated : settings page panel for ads
405
 
406
  == Upgrade Notice ==
407
 
408
+ = 2.93 =
409
 
410
+ updated javascript compatibility
411
 
412
  == Configuration ==
413