Version Description
Download this release
Release Info
Developer | teamplaylotto |
Plugin | CommentLuv |
Version | 2.7.64 |
Comparing to | |
See all releases |
Code changes from version 2.7.63 to 2.7.64
- commentluv.php +3 -1
- readme.txt +5 -2
commentluv.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Plugin Name: CommentLuv
|
3 |
Plugin URI: http://comluv.com/download/commentluv-wordpress/
|
4 |
Description: Plugin to show a link to the last post from the commenters blog by parsing the feed at their given URL when they leave a comment. Rewards your readers and encourage more comments.
|
5 |
-
Version: 2.7.
|
6 |
Author: Andy Bailey
|
7 |
Author URI: http://fiddyp.co.uk/
|
8 |
*/
|
@@ -390,6 +390,7 @@ if (! class_exists ( 'commentluv' )) {
|
|
390 |
curl_setopt ( $curl, CURLOPT_TIMEOUT, 7 );
|
391 |
$content = curl_exec ( $curl );
|
392 |
if (! curl_error ( $curl )) {
|
|
|
393 |
if (function_exists ( json_decode )) {
|
394 |
$data = json_decode ( $content );
|
395 |
if ($data->status != 200) {
|
@@ -397,6 +398,7 @@ if (! class_exists ( 'commentluv' )) {
|
|
397 |
// have a tantrum here if you want.
|
398 |
}
|
399 |
}
|
|
|
400 |
curl_close ( $curl );
|
401 |
|
402 |
}
|
2 |
Plugin Name: CommentLuv
|
3 |
Plugin URI: http://comluv.com/download/commentluv-wordpress/
|
4 |
Description: Plugin to show a link to the last post from the commenters blog by parsing the feed at their given URL when they leave a comment. Rewards your readers and encourage more comments.
|
5 |
+
Version: 2.7.64
|
6 |
Author: Andy Bailey
|
7 |
Author URI: http://fiddyp.co.uk/
|
8 |
*/
|
390 |
curl_setopt ( $curl, CURLOPT_TIMEOUT, 7 );
|
391 |
$content = curl_exec ( $curl );
|
392 |
if (! curl_error ( $curl )) {
|
393 |
+
/* removed json_decode until fix from wp 2.9 is released
|
394 |
if (function_exists ( json_decode )) {
|
395 |
$data = json_decode ( $content );
|
396 |
if ($data->status != 200) {
|
398 |
// have a tantrum here if you want.
|
399 |
}
|
400 |
}
|
401 |
+
*/
|
402 |
curl_close ( $curl );
|
403 |
|
404 |
}
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: @commentluv (concept & coding)
|
|
3 |
Donate link:http://comluv.com/about/donate
|
4 |
Tags: commentluv, comments, last blog post, linkluv
|
5 |
Requires at least: 2.8
|
6 |
-
Tested up to: 2.
|
7 |
-
Stable tag: 2.7.
|
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 |
|
@@ -48,6 +48,9 @@ You can submit a support ticket at http://comluv.com
|
|
48 |
|
49 |
== ChangeLog ==
|
50 |
|
|
|
|
|
|
|
51 |
= 2.763 =
|
52 |
* Added check for hidden fields display to prevent double instances.
|
53 |
* Make css file valid
|
3 |
Donate link:http://comluv.com/about/donate
|
4 |
Tags: commentluv, comments, last blog post, linkluv
|
5 |
Requires at least: 2.8
|
6 |
+
Tested up to: 2.9
|
7 |
+
Stable tag: 2.7.64
|
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 |
|
48 |
|
49 |
== ChangeLog ==
|
50 |
|
51 |
+
= 2.764 =
|
52 |
+
* Removed json_decode. Some wp2.9 installs were getting errors
|
53 |
+
|
54 |
= 2.763 =
|
55 |
* Added check for hidden fields display to prevent double instances.
|
56 |
* Make css file valid
|