Version Description
Download this release
Release Info
Developer | Disqus |
Plugin | Disqus Comment System |
Version | 2.66 |
Comparing to | |
See all releases |
Code changes from version 2.65 to 2.66
- disqus.php +7 -7
- 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 |
|
@@ -31,7 +31,7 @@ define('DISQUS_CAN_EXPORT', is_file(dirname(__FILE__) . '/export.php'));
|
|
31 |
if (!defined('DISQUS_DEBUG')) {
|
32 |
define('DISQUS_DEBUG', false);
|
33 |
}
|
34 |
-
define('DISQUS_VERSION', '2.
|
35 |
|
36 |
/**
|
37 |
* Returns an array of all option identifiers used by DISQUS.
|
@@ -783,9 +783,9 @@ function dsq_menu_admin_head() {
|
|
783 |
?>
|
784 |
<script type="text/javascript">
|
785 |
jQuery(function($) {
|
786 |
-
// fix menu
|
787 |
-
|
788 |
-
mc.find('a.wp-has-submenu').attr('href', 'edit-comments.php?page=disqus').end().find('.wp-submenu li:has(a[href=edit-comments.php?page=disqus])').prependTo(mc.find('.wp-submenu ul'));
|
789 |
});
|
790 |
</script>
|
791 |
<?php
|
@@ -828,8 +828,8 @@ function dsq_dash_comment_counts() {
|
|
828 |
<script type="text/javascript">
|
829 |
jQuery(function($) {
|
830 |
$('#dashboard_right_now').find('.b-comments a').html('<?php echo $stats->total_comments; ?>').end().find('.b_approved a').html('<?php echo $stats->approved; ?>').end().find('.b-waiting a').html('<?php echo $stats->moderated; ?>').end().find('.b-spam a').html('<?php echo $stats->spam; ?>').end().find('.inside').slideDown();
|
831 |
-
|
832 |
-
|
833 |
});
|
834 |
</script>
|
835 |
<?php
|
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.66
|
8 |
Author URI: http://disqus.com/
|
9 |
*/
|
10 |
|
31 |
if (!defined('DISQUS_DEBUG')) {
|
32 |
define('DISQUS_DEBUG', false);
|
33 |
}
|
34 |
+
define('DISQUS_VERSION', '2.66');
|
35 |
|
36 |
/**
|
37 |
* Returns an array of all option identifiers used by DISQUS.
|
783 |
?>
|
784 |
<script type="text/javascript">
|
785 |
jQuery(function($) {
|
786 |
+
// fix menu
|
787 |
+
var mc = $('#menu-comments');
|
788 |
+
mc.find('a.wp-has-submenu').attr('href', 'edit-comments.php?page=disqus').end().find('.wp-submenu li:has(a[href="edit-comments.php?page=disqus"])').prependTo(mc.find('.wp-submenu ul'));
|
789 |
});
|
790 |
</script>
|
791 |
<?php
|
828 |
<script type="text/javascript">
|
829 |
jQuery(function($) {
|
830 |
$('#dashboard_right_now').find('.b-comments a').html('<?php echo $stats->total_comments; ?>').end().find('.b_approved a').html('<?php echo $stats->approved; ?>').end().find('.b-waiting a').html('<?php echo $stats->moderated; ?>').end().find('.b-spam a').html('<?php echo $stats->spam; ?>').end().find('.inside').slideDown();
|
831 |
+
$('#dashboard_recent_comments div.trackback').remove();
|
832 |
+
$('#dashboard_right_now .inside table td.last a, #dashboard_recent_comments .inside .textright a.button').attr('href', 'edit-comments.php?page=disqus');
|
833 |
});
|
834 |
</script>
|
835 |
<?php
|
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.1.2
|
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.65
|
66 |
|
67 |
* Corrected a bug that was causing posts to not appear due to invalid references.
|
3 |
Tags: comments, threaded, email, notification, spam, avatars, community, profile, widget, disqus
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.1.2
|
6 |
+
Stable tag: 2.66
|
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.66
|
66 |
+
|
67 |
+
* Fixed issue with jQuery usage which conflicted with updated jQuery version.
|
68 |
+
|
69 |
2.65
|
70 |
|
71 |
* Corrected a bug that was causing posts to not appear due to invalid references.
|