CommentLuv - Version 2.6.5

Version Description

Download this release

Release Info

Developer teamplaylotto
Plugin Icon 128x128 CommentLuv
Version 2.6.5
Comparing to
See all releases

Code changes from version 2.6.4 to 2.6.5

Files changed (3) hide show
  1. commentluv-manager.php +4 -4
  2. commentluv.php +3 -2
  3. readme.txt +1 -1
commentluv-manager.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- // fixed up to 2.6.4
3
  if ( ! defined( 'WP_PLUGIN_URL' ) )
4
  define( 'WP_PLUGIN_URL', WP_CONTENT_URL. '/plugins' );
5
  $commentluvdirectory = WP_PLUGIN_URL . '/' . dirname( plugin_basename(__FILE__) );
@@ -21,7 +21,7 @@ add_option('cl_click_track','on');
21
  add_option('cl_showtext','CommentLuv Enabled');
22
  add_option('cl_badge_pos','');
23
  add_option('cl_prepend','');
24
- add_option('cl_version','264');
25
  add_option('cl_select_text','choose a different post to show');
26
  add_option('cl_intense','off');
27
  // Pre-2.6 compatibility
@@ -39,8 +39,8 @@ commentluv_setup();
39
  function commentluv_activation(){
40
  // set version for future releases if they need to change a value
41
  $version=get_option('cl_version');
42
- if($version<264){
43
- update_option('cl_version','264');
44
 
45
  }
46
  }
1
  <?php
2
+ // fixed up to 2.6.5
3
  if ( ! defined( 'WP_PLUGIN_URL' ) )
4
  define( 'WP_PLUGIN_URL', WP_CONTENT_URL. '/plugins' );
5
  $commentluvdirectory = WP_PLUGIN_URL . '/' . dirname( plugin_basename(__FILE__) );
21
  add_option('cl_showtext','CommentLuv Enabled');
22
  add_option('cl_badge_pos','');
23
  add_option('cl_prepend','');
24
+ add_option('cl_version','265');
25
  add_option('cl_select_text','choose a different post to show');
26
  add_option('cl_intense','off');
27
  // Pre-2.6 compatibility
39
  function commentluv_activation(){
40
  // set version for future releases if they need to change a value
41
  $version=get_option('cl_version');
42
+ if($version<265){
43
+ update_option('cl_version','265');
44
 
45
  }
46
  }
commentluv.php CHANGED
@@ -2,7 +2,7 @@
2
  Plugin Name: commentluv
3
  Plugin URI: http://www.commentluv.com/download/ajax-commentluv-installation/
4
  Description: Plugin to show a link to the last post from the commenters blog in their comment. Just activate and it's ready. Will parse a feed from most sites that have a feed location specified in its head html. See the <a href="options-general.php?page=commentluv">Settings Page</a> for styling and text output options.
5
- Version: 2.6.3
6
  Author: Andy Bailey
7
  Author URI: http://www.fiddyp.co.uk/
8
 
@@ -10,6 +10,7 @@ Author URI: http://www.fiddyp.co.uk/
10
  You can now edit the options from the dashboard
11
  *********************************************************************
12
  updates:
 
13
  2.6.4 - 15 jan 09 - removed name/id pull down boxes. now use only name value (all fields have a name value by default)
14
  2.6.3 - 5 jan 09 - fix for intense debate. pointed to by http://dannybrown.me
15
  2.6.2 - 26 dec 08 minor bug with update to codex
@@ -309,7 +310,7 @@ function cl_style_script(){
309
 
310
  // start the javascript output
311
  if(is_single()) {
312
- echo '<!-- Styling and script added by commentluv 2.64 http://www.commentluv.com -->';
313
 
314
  echo '<style type="text/css">abbr em{'.get_option('cl_style').'} #lastposts { width: 300px; } </style>';
315
  echo "\n<script type=\"text/javascript\" src=\"".WP_PLUGIN_URL."/commentluv/js/commentluv";
2
  Plugin Name: commentluv
3
  Plugin URI: http://www.commentluv.com/download/ajax-commentluv-installation/
4
  Description: Plugin to show a link to the last post from the commenters blog in their comment. Just activate and it's ready. Will parse a feed from most sites that have a feed location specified in its head html. See the <a href="options-general.php?page=commentluv">Settings Page</a> for styling and text output options.
5
+ Version: 2.6.5
6
  Author: Andy Bailey
7
  Author URI: http://www.fiddyp.co.uk/
8
 
10
  You can now edit the options from the dashboard
11
  *********************************************************************
12
  updates:
13
+ 2.6.5 - 16 jan 09 - magic fix for updates on dashboard.
14
  2.6.4 - 15 jan 09 - removed name/id pull down boxes. now use only name value (all fields have a name value by default)
15
  2.6.3 - 5 jan 09 - fix for intense debate. pointed to by http://dannybrown.me
16
  2.6.2 - 26 dec 08 minor bug with update to codex
310
 
311
  // start the javascript output
312
  if(is_single()) {
313
+ echo '<!-- Styling and script added by commentluv 2.65 http://www.commentluv.com -->';
314
 
315
  echo '<style type="text/css">abbr em{'.get_option('cl_style').'} #lastposts { width: 300px; } </style>';
316
  echo "\n<script type=\"text/javascript\" src=\"".WP_PLUGIN_URL."/commentluv/js/commentluv";
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: Andy Bailey
3
  Tags: comments, linkluv
4
  Requires at least: 2.5
5
  Tested up to: 2.7
6
- Stable tag: 2.6.4
7
 
8
  Appends a titled link using AJAX to the authors last blog post on their comment giving back some luv to the people that join your discussion. Compatible with logged on users and Wordpress MU. Visit CommentLuv.com for detailed instructions on features.
9
 
3
  Tags: comments, linkluv
4
  Requires at least: 2.5
5
  Tested up to: 2.7
6
+ Stable tag: 2.6.5
7
 
8
  Appends a titled link using AJAX to the authors last blog post on their comment giving back some luv to the people that join your discussion. Compatible with logged on users and Wordpress MU. Visit CommentLuv.com for detailed instructions on features.
9