Version Description
Download this release
Release Info
Developer | Disqus |
Plugin | Disqus Comment System |
Version | 2.61 |
Comparing to | |
See all releases |
Code changes from version 2.60 to 2.61
- disqus.php +3 -2
- readme.txt +5 -1
disqus.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Disqus Comment System
|
|
4 |
Plugin URI: http://disqus.com/
|
5 |
Description: The Disqus comment system replaces your WordPress comment system with your comments hosted and powered by Disqus. Head over to the Comments admin page to set up your DISQUS Comment System.
|
6 |
Author: Disqus <team@disqus.com>
|
7 |
-
Version: 2.
|
8 |
Author URI: http://disqus.com/
|
9 |
*/
|
10 |
|
@@ -20,7 +20,7 @@ define('DISQUS_CAN_EXPORT', is_file(dirname(__FILE__) . '/export.php'));
|
|
20 |
if (!defined('DISQUS_DEBUG')) {
|
21 |
define('DISQUS_DEBUG', false);
|
22 |
}
|
23 |
-
define('DISQUS_VERSION', '2.
|
24 |
|
25 |
/**
|
26 |
* Returns an array of all option identifiers used by DISQUS.
|
@@ -117,6 +117,7 @@ function dsq_can_replace() {
|
|
117 |
global $id, $post;
|
118 |
$replace = get_option('disqus_replace');
|
119 |
|
|
|
120 |
if ( 'draft' == $post->post_status ) { return false; }
|
121 |
if ( !get_option('disqus_forum_url') ) { return false; }
|
122 |
else if ( 'all' == $replace ) { return true; }
|
4 |
Plugin URI: http://disqus.com/
|
5 |
Description: The Disqus comment system replaces your WordPress comment system with your comments hosted and powered by Disqus. Head over to the Comments admin page to set up your DISQUS Comment System.
|
6 |
Author: Disqus <team@disqus.com>
|
7 |
+
Version: 2.61
|
8 |
Author URI: http://disqus.com/
|
9 |
*/
|
10 |
|
20 |
if (!defined('DISQUS_DEBUG')) {
|
21 |
define('DISQUS_DEBUG', false);
|
22 |
}
|
23 |
+
define('DISQUS_VERSION', '2.61');
|
24 |
|
25 |
/**
|
26 |
* Returns an array of all option identifiers used by DISQUS.
|
117 |
global $id, $post;
|
118 |
$replace = get_option('disqus_replace');
|
119 |
|
120 |
+
if ( is_feed() ) { return false; }
|
121 |
if ( 'draft' == $post->post_status ) { return false; }
|
122 |
if ( !get_option('disqus_forum_url') ) { return false; }
|
123 |
else if ( 'all' == $replace ) { return true; }
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: disqus, alexkingorg, crowdfavorite
|
|
3 |
Tags: comments, threaded, email, notification, spam, avatars, community, profile, widget, disqus
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.0
|
6 |
-
Stable tag: 2.
|
7 |
|
8 |
The Disqus comment system replaces your WordPress comment system with your comments hosted and powered by Disqus.
|
9 |
|
@@ -62,6 +62,10 @@ you should remove it, and the new plugin should be stored in 'disqus'.
|
|
62 |
|
63 |
== Changes ==
|
64 |
|
|
|
|
|
|
|
|
|
65 |
2.60
|
66 |
|
67 |
* Added support for new Single Sign-On (API version 3.0).
|
3 |
Tags: comments, threaded, email, notification, spam, avatars, community, profile, widget, disqus
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.0
|
6 |
+
Stable tag: 2.61
|
7 |
|
8 |
The Disqus comment system replaces your WordPress comment system with your comments hosted and powered by Disqus.
|
9 |
|
62 |
|
63 |
== Changes ==
|
64 |
|
65 |
+
2.61
|
66 |
+
|
67 |
+
* Fixed an issue which was causing invalid information to be presented in RSS feeds.
|
68 |
+
|
69 |
2.60
|
70 |
|
71 |
* Added support for new Single Sign-On (API version 3.0).
|