<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[17354] trunk:
  Update counts and pagination when trashing and moderating comments.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/17354">17354</a></dd>
<dt>Author</dt> <dd>ryan</dd>
<dt>Date</dt> <dd>2011-01-22 18:47:42 +0000 (Sat, 22 Jan 2011)</dd>
</dl>

<h3>Log Message</h3>
<pre>Update counts and pagination when trashing and moderating comments. Props garyc40, koopersmith, mdawaffe, nacin. fixes <a href="http://trac.wordpress.org/ticket/15530">#15530</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminadminajaxphp">trunk/wp-admin/admin-ajax.php</a></li>
<li><a href="#trunkwpadminincludesclasswpcommentslisttablephp">trunk/wp-admin/includes/class-wp-comments-list-table.php</a></li>
<li><a href="#trunkwpadminjseditcommentsdevjs">trunk/wp-admin/js/edit-comments.dev.js</a></li>
<li><a href="#trunkwpadminjseditcommentsjs">trunk/wp-admin/js/edit-comments.js</a></li>
<li><a href="#trunkwpincludesscriptloaderphp">trunk/wp-includes/script-loader.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminadminajaxphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/admin-ajax.php (17353 => 17354)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/admin-ajax.php        2011-01-22 18:36:54 UTC (rev 17353)
+++ trunk/wp-admin/admin-ajax.php        2011-01-22 18:47:42 UTC (rev 17354)
</span><span class="lines">@@ -189,7 +189,7 @@
</span><span class="cx">  * @param int $comment_id
</span><span class="cx">  * @return die
</span><span class="cx">  */
</span><del>-function _wp_ajax_delete_comment_response( $comment_id ) {
</del><ins>+function _wp_ajax_delete_comment_response( $comment_id, $delta = -1 ) {
</ins><span class="cx">         $total = (int) @$_POST['_total'];
</span><span class="cx">         $per_page = (int) @$_POST['_per_page'];
</span><span class="cx">         $page = (int) @$_POST['_page'];
</span><span class="lines">@@ -198,43 +198,39 @@
</span><span class="cx">         if ( !$total || !$per_page || !$page || !$url )
</span><span class="cx">                 die( (string) time() );
</span><span class="cx"> 
</span><del>-        if ( --$total &lt; 0 ) // Take the total from POST and decrement it (since we just deleted one)
</del><ins>+        $total += $delta;
+        if ( $total &lt; 0 )
</ins><span class="cx">                 $total = 0;
</span><span class="cx"> 
</span><del>-        if ( 0 != $total % $per_page &amp;&amp; 1 != mt_rand( 1, $per_page ) ) // Only do the expensive stuff on a page-break, and about 1 other time per page
-                die( (string) time() );
</del><ins>+        // Only do the expensive stuff on a page-break, and about 1 other time per page
+        if ( 0 == $total % $per_page || 1 == mt_rand( 1, $per_page ) ) {
+                $post_id = 0;
+                $status = 'total_comments'; // What type of comment count are we looking for?
+                $parsed = parse_url( $url );
+                if ( isset( $parsed['query'] ) ) {
+                        parse_str( $parsed['query'], $query_vars );
+                        if ( !empty( $query_vars['comment_status'] ) )
+                                $status = $query_vars['comment_status'];
+                        if ( !empty( $query_vars['p'] ) )
+                                $post_id = (int) $query_vars['p'];
+                }
</ins><span class="cx"> 
</span><del>-        $post_id = 0;
-        $status = 'total_comments'; // What type of comment count are we looking for?
-        $parsed = parse_url( $url );
-        if ( isset( $parsed['query'] ) ) {
-                parse_str( $parsed['query'], $query_vars );
-                if ( !empty( $query_vars['comment_status'] ) )
-                        $status = $query_vars['comment_status'];
-                if ( !empty( $query_vars['p'] ) )
-                        $post_id = (int) $query_vars['p'];
</del><ins>+                $comment_count = wp_count_comments($post_id);
+
+                if ( isset( $comment_count-&gt;$status ) ) // We're looking for a known type of comment count
+                        $total = $comment_count-&gt;$status;
+                        // else use the decremented value from above
</ins><span class="cx">         }
</span><span class="cx"> 
</span><del>-        $comment_count = wp_count_comments($post_id);
</del><span class="cx">         $time = time(); // The time since the last comment count
</span><span class="cx"> 
</span><del>-        if ( isset( $comment_count-&gt;$status ) ) // We're looking for a known type of comment count
-                $total = $comment_count-&gt;$status;
-        // else use the decremented value from above
-
-        $page_links = paginate_links( array(
-                'base' =&gt; add_query_arg( 'apage', '%#%', $url ),
-                'format' =&gt; '',
-                'prev_text' =&gt; __('&amp;laquo;'),
-                'next_text' =&gt; __('&amp;raquo;'),
-                'total' =&gt; ceil($total / $per_page),
-                'current' =&gt; $page
-        ) );
</del><span class="cx">         $x = new WP_Ajax_Response( array(
</span><span class="cx">                 'what' =&gt; 'comment',
</span><span class="cx">                 'id' =&gt; $comment_id, // here for completeness - not used
</span><span class="cx">                 'supplemental' =&gt; array(
</span><del>-                        'pageLinks' =&gt; $page_links,
</del><ins>+                        'total_items_i18n' =&gt; sprintf( _n( '1 item', '%s items', $total ), number_format_i18n( $total ) ),
+                        'total_pages' =&gt; ceil( $total / $per_page ),
+                        'total_pages_i18n' =&gt; number_format_i18n( ceil( $total / $per_page ) ),
</ins><span class="cx">                         'total' =&gt; $total,
</span><span class="cx">                         'time' =&gt; $time
</span><span class="cx">                 )
</span><span class="lines">@@ -331,6 +327,7 @@
</span><span class="cx">         check_ajax_referer( &quot;delete-comment_$id&quot; );
</span><span class="cx">         $status = wp_get_comment_status( $comment-&gt;comment_ID );
</span><span class="cx"> 
</span><ins>+        $delta = -1;
</ins><span class="cx">         if ( isset($_POST['trash']) &amp;&amp; 1 == $_POST['trash'] ) {
</span><span class="cx">                 if ( 'trash' == $status )
</span><span class="cx">                         die( (string) time() );
</span><span class="lines">@@ -339,6 +336,8 @@
</span><span class="cx">                 if ( 'trash' != $status )
</span><span class="cx">                         die( (string) time() );
</span><span class="cx">                 $r = wp_untrash_comment( $comment-&gt;comment_ID );
</span><ins>+                if ( ! isset( $_POST['comment_status'] ) || $_POST['comment_status'] != 'trash' ) // undo trash, not in trash
+                        $delta = 1;
</ins><span class="cx">         } elseif ( isset($_POST['spam']) &amp;&amp; 1 == $_POST['spam'] ) {
</span><span class="cx">                 if ( 'spam' == $status )
</span><span class="cx">                         die( (string) time() );
</span><span class="lines">@@ -347,6 +346,8 @@
</span><span class="cx">                 if ( 'spam' != $status )
</span><span class="cx">                         die( (string) time() );
</span><span class="cx">                 $r = wp_unspam_comment( $comment-&gt;comment_ID );
</span><ins>+                if ( ! isset( $_POST['comment_status'] ) || $_POST['comment_status'] != 'spam' ) // undo spam, not in spam
+                        $delta = 1;
</ins><span class="cx">         } elseif ( isset($_POST['delete']) &amp;&amp; 1 == $_POST['delete'] ) {
</span><span class="cx">                 $r = wp_delete_comment( $comment-&gt;comment_ID );
</span><span class="cx">         } else {
</span><span class="lines">@@ -354,7 +355,7 @@
</span><span class="cx">         }
</span><span class="cx"> 
</span><span class="cx">         if ( $r ) // Decide if we need to send back '1' or a more complicated response including page links and comment counts
</span><del>-                _wp_ajax_delete_comment_response( $comment-&gt;comment_ID );
</del><ins>+                _wp_ajax_delete_comment_response( $comment-&gt;comment_ID, $delta );
</ins><span class="cx">         die( '0' );
</span><span class="cx">         break;
</span><span class="cx"> case 'delete-tag' :
</span></span></pre></div>
<a id="trunkwpadminincludesclasswpcommentslisttablephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/class-wp-comments-list-table.php (17353 => 17354)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/class-wp-comments-list-table.php        2011-01-22 18:36:54 UTC (rev 17353)
+++ trunk/wp-admin/includes/class-wp-comments-list-table.php        2011-01-22 18:47:42 UTC (rev 17354)
</span><span class="lines">@@ -48,6 +48,7 @@
</span><span class="cx">                         $comment_status = 'all';
</span><span class="cx"> 
</span><span class="cx">                 $comment_type = !empty( $_REQUEST['comment_type'] ) ? $_REQUEST['comment_type'] : '';
</span><ins>+                error_log( var_export( $comment_type, true ) );
</ins><span class="cx"> 
</span><span class="cx">                 $search = ( isset( $_REQUEST['s'] ) ) ? $_REQUEST['s'] : '';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkwpadminjseditcommentsdevjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/js/edit-comments.dev.js (17353 => 17354)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/edit-comments.dev.js        2011-01-22 18:36:54 UTC (rev 17353)
+++ trunk/wp-admin/js/edit-comments.dev.js        2011-01-22 18:47:42 UTC (rev 17354)
</span><span class="lines">@@ -4,9 +4,9 @@
</span><span class="cx"> setCommentsList = function() {
</span><span class="cx">         var totalInput, perPageInput, pageInput, lastConfidentTime = 0, dimAfter, delBefore, updateTotalCount, delAfter;
</span><span class="cx"> 
</span><del>-        totalInput = $('.tablenav input[name=&quot;_total&quot;]', '#comments-form');
-        perPageInput = $('.tablenav input[name=&quot;_per_page&quot;]', '#comments-form');
-        pageInput = $('.tablenav input[name=&quot;_page&quot;]', '#comments-form');
</del><ins>+        totalInput = $('input[name=&quot;_total&quot;]', '#comments-form');
+        perPageInput = $('input[name=&quot;_per_page&quot;]', '#comments-form');
+        pageInput = $('input[name=&quot;_page&quot;]', '#comments-form');
</ins><span class="cx"> 
</span><span class="cx">         dimAfter = function( r, settings ) {
</span><span class="cx">                 var c = $('#' + settings.element);
</span><span class="lines">@@ -38,6 +38,7 @@
</span><span class="cx">                 settings.data._per_page = perPageInput.val() || 0;
</span><span class="cx">                 settings.data._page = pageInput.val() || 0;
</span><span class="cx">                 settings.data._url = document.location.href;
</span><ins>+                settings.data.comment_status = $('input[name=comment_status]', '#comments-form').val();
</ins><span class="cx"> 
</span><span class="cx">                 if ( cl.indexOf(':trash=1') != -1 )
</span><span class="cx">                         action = 'trash';
</span><span class="lines">@@ -192,12 +193,12 @@
</span><span class="cx">                                 total = 0;
</span><span class="cx"> 
</span><span class="cx">                         if ( ( 'object' == typeof r ) &amp;&amp; lastConfidentTime &lt; settings.parsed.responses[0].supplemental.time ) {
</span><del>-                                pageLinks = settings.parsed.responses[0].supplemental.pageLinks || '';
-                                if ( $.trim( pageLinks ) )
-                                        $('.tablenav-pages').find( '.page-numbers' ).remove().end().append( $( pageLinks ) );
-                                else
-                                        $('.tablenav-pages').find( '.page-numbers' ).remove();
-
</del><ins>+                                total_items_i18n = settings.parsed.responses[0].supplemental.total_items_i18n || '';
+                                if ( total_items_i18n ) {
+                                        $('.displaying-num').text( total_items_i18n );
+                                        $('.total-pages').text( settings.parsed.responses[0].supplemental.total_pages_i18n );
+                                        $('.tablenav-pages').find('.next-page, .last-page').toggleClass('disabled', settings.parsed.responses[0].supplemental.total_pages == $('.current-page').val());
+                                }
</ins><span class="cx">                                 updateTotalCount( total, settings.parsed.responses[0].supplemental.time, true );
</span><span class="cx">                         } else {
</span><span class="cx">                                 updateTotalCount( total, r, false );
</span><span class="lines">@@ -236,7 +237,11 @@
</span><span class="cx">                 args.no_placeholder = true;
</span><span class="cx"> 
</span><span class="cx">                 args.paged ++;
</span><del>-                
</del><ins>+
+                // $.query.get() needs some correction to be sent into an ajax request
+                if ( true === args.comment_type )
+                        args.comment_type = '';
+
</ins><span class="cx">                 args = $.extend(args, {
</span><span class="cx">                         'action': 'fetch-list',
</span><span class="cx">                         'list_args': list_args,
</span></span></pre></div>
<a id="trunkwpadminjseditcommentsjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/js/edit-comments.js (17353 => 17354)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/edit-comments.js        2011-01-22 18:36:54 UTC (rev 17353)
+++ trunk/wp-admin/js/edit-comments.js        2011-01-22 18:47:42 UTC (rev 17354)
</span><span class="lines">@@ -1 +1 @@
</span><del>-var theList,theExtraList,toggleWithKeyboard=false;(function($){setCommentsList=function(){var totalInput,perPageInput,pageInput,lastConfidentTime=0,dimAfter,delBefore,updateTotalCount,delAfter;totalInput=$('.tablenav input[name=&quot;_total&quot;]',&quot;#comments-form&quot;);perPageInput=$('.tablenav input[name=&quot;_per_page&quot;]',&quot;#comments-form&quot;);pageInput=$('.tablenav input[name=&quot;_page&quot;]',&quot;#comments-form&quot;);dimAfter=function(r,settings){var c=$(&quot;#&quot;+settings.element);if(c.is(&quot;.unapproved&quot;)){c.find(&quot;div.comment_status&quot;).html(&quot;0&quot;)}else{c.find(&quot;div.comment_status&quot;).html(&quot;1&quot;)}$(&quot;span.pending-count&quot;).each(function(){var a=$(this),n,dif;n=a.html().replace(/[^0-9]+/g,&quot;&quot;);n=parseInt(n,10);if(isNaN(n)){return}dif=$(&quot;#&quot;+settings.element).is(&quot;.&quot;+settings.dimClass)?1:-1;n=n+dif;if(n&lt;0){n=0}a.closest(&quot;#awaiting-mod&quot;)[0==n?&quot;addClass&quot;:&quot;removeClass&quot;](&quot;count-0&quot;);updateCount(a,n);dashboardTotals()})};delBefore=function(settings,list){var cl=$(settings.target).attr(&quot;className&quot;),id,el,n,h,a,author,action=false;settings.data._total=totalInput.val()||0;settings.data._per_page=perPageInput.val()||0;settings.data._page=pageInput.val()||0;settings.data._url=document.location.href;if(cl.indexOf(&quot;:trash=1&quot;)!=-1){action=&quot;trash&quot;}else{if(cl.indexOf(&quot;:spam=1&quot;)!=-1){action=&quot;spam&quot;}}if(action){id=cl.replace(/.*?comment-([0-9]+).*/,&quot;$1&quot;);el=$(&quot;#comment-&quot;+id);note=$(&quot;#&quot;+action+&quot;-undo-holder&quot;).html();el.find(&quot;.check-column :checkbox&quot;).attr(&quot;checked&quot;,&quot;&quot;);if(el.siblings(&quot;#replyrow&quot;).length&amp;&amp;commentReply.cid==id){commentReply.close()}if(el.is(&quot;tr&quot;)){n=el.children(&quot;:visible&quot;).length;author=$(&quot;.author strong&quot;,el).text();h=$('&lt;tr id=&quot;undo-'+id+'&quot; class=&quot;undo un'+action+'&quot; style=&quot;display:none;&quot;&gt;&lt;td colspan=&quot;'+n+'&quot;&gt;'+note+&quot;&lt;/td&gt;&lt;/tr&gt;&quot;)}else{author=$(&quot;.comment-author&quot;,el).text();h=$('&lt;div id=&quot;undo-'+id+'&quot; style=&quot;display:none;&quot; class=&quot;undo un'+action+'&quot;&gt;'+note+&quot;&lt;/div&gt;&quot;)}el.before(h);$(&quot;strong&quot;,&quot;#undo-&quot;+id).text(author+&quot; &quot;);a=$(&quot;.undo a&quot;,&quot;#undo-&quot;+id);a.attr(&quot;href&quot;,&quot;comment.php?action=un&quot;+action+&quot;comment&amp;c=&quot;+id+&quot;&amp;_wpnonce=&quot;+settings.data._ajax_nonce);a.attr(&quot;className&quot;,&quot;delete:the-comment-list:comment-&quot;+id+&quot;::un&quot;+action+&quot;=1 vim-z vim-destructive&quot;);$(&quot;.avatar&quot;,el).clone().prependTo(&quot;#undo-&quot;+id+&quot; .&quot;+action+&quot;-undo-inside&quot;);a.click(function(){list.wpList.del(this);$(&quot;#undo-&quot;+id).css({backgroundColor:&quot;#ceb&quot;}).fadeOut(350,function(){$(this).remove();$(&quot;#comment-&quot;+id).css(&quot;backgroundColor&quot;,&quot;&quot;).fadeIn(300,function(){$(this).show()})});return false})}return settings};updateTotalCount=function(total,time,setConfidentTime){if(time&lt;lastConfidentTime){return}if(setConfidentTime){lastConfidentTime=time}totalInput.val(total.toString());$(&quot;span.total-type-count&quot;).each(function(){updateCount($(this),total)})};function dashboardTotals(n){var dash=$(&quot;#dashboard_right_now&quot;),total,appr,totalN,apprN;n=n||0;if(isNaN(n)||!dash.length){return}total=$(&quot;span.total-count&quot;,dash);appr=$(&quot;span.approved-count&quot;,dash);totalN=getCount(total);totalN=totalN+n;apprN=totalN-getCount($(&quot;span.pending-count&quot;,dash))-getCount($(&quot;span.spam-count&quot;,dash));updateCount(total,totalN);updateCount(appr,apprN)}function getCount(el){var n=parseInt(el.html().replace(/[^0-9]+/g,&quot;&quot;),10);if(isNaN(n)){return 0}return n}function updateCount(el,n){var n1=&quot;&quot;;if(isNaN(n)){return}n=n&lt;1?&quot;0&quot;:n.toString();if(n.length&gt;3){while(n.length&gt;3){n1=thousandsSeparator+n.substr(n.length-3)+n1;n=n.substr(0,n.length-3)}n=n+n1}el.html(n)}delAfter=function(r,settings){var total,pageLinks,N,untrash=$(settings.target).parent().is(&quot;span.untrash&quot;),unspam=$(settings.target).parent().is(&quot;span.unspam&quot;),spam,trash;function getUpdate(s){if($(settings.target).parent().is(&quot;span.&quot;+s)){return 1}else{if($(&quot;#&quot;+settings.element).is(&quot;.&quot;+s)){return -1}}return 0}spam=getUpdate(&quot;spam&quot;);trash=getUpdate(&quot;trash&quot;);if(untrash){trash=-1}if(unspam){spam=-1}$(&quot;span.pending-count&quot;).each(function(){var a=$(this),n=getCount(a),unapproved=$(&quot;#&quot;+settings.element).is(&quot;.unapproved&quot;);if($(settings.target).parent().is(&quot;span.unapprove&quot;)||((untrash||unspam)&amp;&amp;unapproved)){n=n+1}else{if(unapproved){n=n-1}}if(n&lt;0){n=0}a.closest(&quot;#awaiting-mod&quot;)[0==n?&quot;addClass&quot;:&quot;removeClass&quot;](&quot;count-0&quot;);updateCount(a,n);dashboardTotals()});$(&quot;span.spam-count&quot;).each(function(){var a=$(this),n=getCount(a)+spam;updateCount(a,n)});$(&quot;span.trash-count&quot;).each(function(){var a=$(this),n=getCount(a)+trash;updateCount(a,n)});if($(&quot;#dashboard_right_now&quot;).length){N=trash?-1*trash:0;dashboardTotals(N)}else{total=totalInput.val()?parseInt(totalInput.val(),10):0;total=total-spam-trash;if(total&lt;0){total=0}if((&quot;object&quot;==typeof r)&amp;&amp;lastConfidentTime&lt;settings.parsed.responses[0].supplemental.time){pageLinks=settings.parsed.responses[0].supplemental.pageLinks||&quot;&quot;;if($.trim(pageLinks)){$(&quot;.tablenav-pages&quot;).find(&quot;.page-numbers&quot;).remove().end().append($(pageLinks))}else{$(&quot;.tablenav-pages&quot;).find(&quot;.page-numbers&quot;).remove()}updateTotalCount(total,settings.parsed.responses[0].supplemental.time,true)}else{updateTotalCount(total,r,false)}}if(!theExtraList||theExtraList.size()==0||theExtraList.children().size()==0||untrash||unspam){return}theList.get(0).wpList.add(theExtraList.children(&quot;:eq(0)&quot;).remove().clone());refillTheExtraList()};var refillTheExtraList=function(ev){var args=$.query.get(),total_pages=$(&quot;.total-pages&quot;).text(),per_page=$(&quot;input[name=_per_page]&quot;,&quot;#comments-form&quot;).val(),r;if(!args.paged){args.paged=1}if(args.paged&gt;total_pages){return}if(ev){theExtraList.empty();args.number=Math.min(8,per_page)}else{args.number=1;args.offset=Math.min(8,per_page)-1}args.no_placeholder=true;args.paged++;args=$.extend(args,{action:&quot;fetch-list&quot;,list_args:list_args,_ajax_fetch_list_nonce:$(&quot;#_ajax_fetch_list_nonce&quot;).val()});$.ajax({url:ajaxurl,global:false,dataType:&quot;json&quot;,data:args,success:function(response){theExtraList.get(0).wpList.add(response.rows)}})};theExtraList=$(&quot;#the-extra-comment-list&quot;).wpList({alt:&quot;&quot;,delColor:&quot;none&quot;,addColor:&quot;none&quot;});theList=$(&quot;#the-comment-list&quot;).wpList({alt:&quot;&quot;,delBefore:delBefore,dimAfter:dimAfter,delAfter:delAfter,addColor:&quot;none&quot;}).bind(&quot;wpListDelEnd&quot;,function(e,s){var id=s.element.replace(/[^0-9]+/g,&quot;&quot;);if(s.target.className.indexOf(&quot;:trash=1&quot;)!=-1||s.target.className.indexOf(&quot;:spam=1&quot;)!=-1){$(&quot;#undo-&quot;+id).fadeIn(300,function(){$(this).show()})}})};commentReply={cid:&quot;&quot;,act:&quot;&quot;,init:function(){var row=$(&quot;#replyrow&quot;);$(&quot;a.cancel&quot;,row).click(function(){return commentReply.revert()});$(&quot;a.save&quot;,row).click(function(){return commentReply.send()});$(&quot;input#author, input#author-email, input#author-url&quot;,row).keypress(function(e){if(e.which==13){commentReply.send();e.preventDefault();return false}});$(&quot;#the-comment-list .column-comment &gt; p&quot;).dblclick(function(){commentReply.toggle($(this).parent())});$(&quot;#doaction, #doaction2, #post-query-submit&quot;).click(function(e){if($(&quot;#the-comment-list #replyrow&quot;).length&gt;0){commentReply.close()}});this.comments_listing=$('#comments-form &gt; input[name=&quot;comment_status&quot;]').val()||&quot;&quot;},addEvents:function(r){r.each(function(){$(this).find(&quot;.column-comment &gt; p&quot;).dblclick(function(){commentReply.toggle($(this).parent())})})},toggle:function(el){if($(el).css(&quot;display&quot;)!=&quot;none&quot;){$(el).find(&quot;a.vim-q&quot;).click()}},revert:function(){if($(&quot;#the-comment-list #replyrow&quot;).length&lt;1){return false}$(&quot;#replyrow&quot;).fadeOut(&quot;fast&quot;,function(){commentReply.close()});return false},close:function(){var c;if(this.cid){c=$(&quot;#comment-&quot;+this.cid);if(this.act==&quot;edit-comment&quot;){c.fadeIn(300,function(){c.show()}).css(&quot;backgroundColor&quot;,&quot;&quot;)}$(&quot;#replyrow&quot;).hide();$(&quot;#com-reply&quot;).append($(&quot;#replyrow&quot;));$(&quot;#replycontent&quot;).val(&quot;&quot;);$(&quot;input&quot;,&quot;#edithead&quot;).val(&quot;&quot;);$(&quot;.error&quot;,&quot;#replysubmit&quot;).html(&quot;&quot;).hide();$(&quot;.waiting&quot;,&quot;#replysubmit&quot;).hide();if($.browser.msie){$(&quot;#replycontainer, #replycontent&quot;).css(&quot;height&quot;,&quot;120px&quot;)}else{$(&quot;#replycontainer&quot;).resizable(&quot;destroy&quot;).css(&quot;height&quot;,&quot;120px&quot;)}this.cid=&quot;&quot;}},open:function(id,p,a){var t=this,editRow,rowData,act,h,c=$(&quot;#comment-&quot;+id);t.close();t.cid=id;editRow=$(&quot;#replyrow&quot;);rowData=$(&quot;#inline-&quot;+id);act=t.act=(a==&quot;edit&quot;)?&quot;edit-comment&quot;:&quot;replyto-comment&quot;;$(&quot;#action&quot;,editRow).val(act);$(&quot;#comment_post_ID&quot;,editRow).val(p);$(&quot;#comment_ID&quot;,editRow).val(id);if(a==&quot;edit&quot;){$(&quot;#author&quot;,editRow).val($(&quot;div.author&quot;,rowData).text());$(&quot;#author-email&quot;,editRow).val($(&quot;div.author-email&quot;,rowData).text());$(&quot;#author-url&quot;,editRow).val($(&quot;div.author-url&quot;,rowData).text());$(&quot;#status&quot;,editRow).val($(&quot;div.comment_status&quot;,rowData).text());$(&quot;#replycontent&quot;,editRow).val($(&quot;textarea.comment&quot;,rowData).val());$(&quot;#edithead, #savebtn&quot;,editRow).show();$(&quot;#replyhead, #replybtn&quot;,editRow).hide();h=c.height();if(h&gt;220){if($.browser.msie){$(&quot;#replycontainer, #replycontent&quot;,editRow).height(h-105)}else{$(&quot;#replycontainer&quot;,editRow).height(h-105)}}c.after(editRow).fadeOut(&quot;fast&quot;,function(){$(&quot;#replyrow&quot;).fadeIn(300,function(){$(this).show()})})}else{$(&quot;#edithead, #savebtn&quot;,editRow).hide();$(&quot;#replyhead, #replybtn&quot;,editRow).show();c.after(editRow);$(&quot;#replyrow&quot;).fadeIn(300,function(){$(this).show()})}if(!$.browser.msie){$(&quot;#replycontainer&quot;).resizable({handles:&quot;s&quot;,axis:&quot;y&quot;,minHeight:80,stop:function(){$(&quot;#replycontainer&quot;).width(&quot;auto&quot;)}})}setTimeout(function(){var rtop,rbottom,scrollTop,vp,scrollBottom;rtop=$(&quot;#replyrow&quot;).offset().top;rbottom=rtop+$(&quot;#replyrow&quot;).height();scrollTop=window.pageYOffset||document.documentElement.scrollTop;vp=document.documentElement.clientHeight||self.innerHeight||0;scrollBottom=scrollTop+vp;if(scrollBottom-20&lt;rbottom){window.scroll(0,rbottom-vp+35)}else{if(rtop-20&lt;scrollTop){window.scroll(0,rtop-35)}}$(&quot;#replycontent&quot;).focus().keyup(function(e){if(e.which==27){commentReply.revert()}})},600);return false},send:function(){var post={};$(&quot;#replysubmit .error&quot;).hide();$(&quot;#replysubmit .waiting&quot;).show();$(&quot;#replyrow input&quot;).each(function(){post[$(this).attr(&quot;name&quot;)]=$(this).val()});post.content=$(&quot;#replycontent&quot;).val();post.id=post.comment_post_ID;post.comments_listing=this.comments_listing;post.p=$(&quot;[name=p]&quot;).val();$.ajax({type:&quot;POST&quot;,url:ajaxurl,data:post,success:function(x){commentReply.show(x)},error:function(r){commentReply.error(r)}});return false},show:function(xml){var r,c,id,bg;if(typeof(xml)==&quot;string&quot;){this.error({responseText:xml});return false}r=wpAjax.parseAjaxResponse(xml);if(r.errors){this.error({responseText:wpAjax.broken});return false}r=r.responses[0];c=r.data;id=&quot;#comment-&quot;+r.id;if(&quot;edit-comment&quot;==this.act){$(id).remove()}$(c).hide();$(&quot;#replyrow&quot;).after(c);this.revert();this.addEvents($(id));bg=$(id).hasClass(&quot;unapproved&quot;)?&quot;#ffffe0&quot;:&quot;#fff&quot;;$(id).animate({backgroundColor:&quot;#CCEEBB&quot;},600).animate({backgroundColor:bg},600)},error:function(r){var er=r.statusText;$(&quot;#replysubmit .waiting&quot;).hide();if(r.responseText){er=r.responseText.replace(/&lt;.[^&lt;&gt;]*?&gt;/g,&quot;&quot;)}if(er){$(&quot;#replysubmit .error&quot;).html(er).show()}}};$(document).ready(function(){var make_hotkeys_redirect,edit_comment,toggle_all,make_bulk;setCommentsList();commentReply.init();$(document).delegate(&quot;span.delete a.delete&quot;,&quot;click&quot;,function(){return false});if(typeof QTags!=&quot;undefined&quot;){ed_reply=new QTags(&quot;ed_reply&quot;,&quot;replycontent&quot;,&quot;replycontainer&quot;,&quot;more&quot;)}if(typeof $.table_hotkeys!=&quot;undefined&quot;){make_hotkeys_redirect=function(which){return function(){var first_last,l;first_last=&quot;next&quot;==which?&quot;first&quot;:&quot;last&quot;;l=$(&quot;.tablenav-pages .&quot;+which+&quot;-page:not(.disabled)&quot;);if(l.length){window.location=l[0].href.replace(/\&amp;hotkeys_highlight_(first|last)=1/g,&quot;&quot;)+&quot;&amp;hotkeys_highlight_&quot;+first_last+&quot;=1&quot;}}};edit_comment=function(event,current_row){window.location=$(&quot;span.edit a&quot;,current_row).attr(&quot;href&quot;)};toggle_all=function(){toggleWithKeyboard=true;$(&quot;input:checkbox&quot;,&quot;#cb&quot;).click().attr(&quot;checked&quot;,&quot;&quot;);toggleWithKeyboard=false};make_bulk=function(value){return function(){var scope=$('select[name=&quot;action&quot;]');$(&quot;option[value=&quot;+value+&quot;]&quot;,scope).attr(&quot;selected&quot;,&quot;selected&quot;);$(&quot;#doaction&quot;).click()}};$.table_hotkeys($(&quot;table.widefat&quot;),[&quot;a&quot;,&quot;u&quot;,&quot;s&quot;,&quot;d&quot;,&quot;r&quot;,&quot;q&quot;,&quot;z&quot;,[&quot;e&quot;,edit_comment],[&quot;shift+x&quot;,toggle_all],[&quot;shift+a&quot;,make_bulk(&quot;approve&quot;)],[&quot;shift+s&quot;,make_bulk(&quot;spam&quot;)],[&quot;shift+d&quot;,make_bulk(&quot;delete&quot;)],[&quot;shift+t&quot;,make_bulk(&quot;trash&quot;)],[&quot;shift+z&quot;,make_bulk(&quot;untrash&quot;)],[&quot;shift+u&quot;,make_bulk(&quot;unapprove&quot;)]],{highlight_first:adminCommentsL10n.hotkeys_highlight_first,highlight_last:adminCommentsL10n.hotkeys_highlight_last,prev_page_link_cb:make_hotkeys_redirect(&quot;prev&quot;),next_page_link_cb:make_hotkeys_redirect(&quot;next&quot;)})}})})(jQuery);
</del><span class="cx">\ No newline at end of file
</span><ins>+var theList,theExtraList,toggleWithKeyboard=false;(function(a){setCommentsList=function(){var d,f,i,m=0,h,j,e,l;d=a('input[name=&quot;_total&quot;]',&quot;#comments-form&quot;);f=a('input[name=&quot;_per_page&quot;]',&quot;#comments-form&quot;);i=a('input[name=&quot;_page&quot;]',&quot;#comments-form&quot;);h=function(o,n){var p=a(&quot;#&quot;+n.element);if(p.is(&quot;.unapproved&quot;)){p.find(&quot;div.comment_status&quot;).html(&quot;0&quot;)}else{p.find(&quot;div.comment_status&quot;).html(&quot;1&quot;)}a(&quot;span.pending-count&quot;).each(function(){var q=a(this),s,r;s=q.html().replace(/[^0-9]+/g,&quot;&quot;);s=parseInt(s,10);if(isNaN(s)){return}r=a(&quot;#&quot;+n.element).is(&quot;.&quot;+n.dimClass)?1:-1;s=s+r;if(s&lt;0){s=0}q.closest(&quot;#awaiting-mod&quot;)[0==s?&quot;addClass&quot;:&quot;removeClass&quot;](&quot;count-0&quot;);g(q,s);k()})};j=function(r,v){var x=a(r.target).attr(&quot;className&quot;),o,p,q,u,w,t,s=false;r.data._total=d.val()||0;r.data._per_page=f.val()||0;r.data._page=i.val()||0;r.data._url=document.location.href;r.data.comment_status=a(&quot;input[name=comment_status]&quot;,&quot;#comments-form&quot;).val();if(x.indexOf(&quot;:trash=1&quot;)!=-1){s=&quot;trash&quot;}else{if(x.indexOf(&quot;:spam=1&quot;)!=-1){s=&quot;spam&quot;}}if(s){o=x.replace(/.*?comment-([0-9]+).*/,&quot;$1&quot;);p=a(&quot;#comment-&quot;+o);note=a(&quot;#&quot;+s+&quot;-undo-holder&quot;).html();p.find(&quot;.check-column :checkbox&quot;).attr(&quot;checked&quot;,&quot;&quot;);if(p.siblings(&quot;#replyrow&quot;).length&amp;&amp;commentReply.cid==o){commentReply.close()}if(p.is(&quot;tr&quot;)){q=p.children(&quot;:visible&quot;).length;t=a(&quot;.author strong&quot;,p).text();u=a('&lt;tr id=&quot;undo-'+o+'&quot; class=&quot;undo un'+s+'&quot; style=&quot;display:none;&quot;&gt;&lt;td colspan=&quot;'+q+'&quot;&gt;'+note+&quot;&lt;/td&gt;&lt;/tr&gt;&quot;)}else{t=a(&quot;.comment-author&quot;,p).text();u=a('&lt;div id=&quot;undo-'+o+'&quot; style=&quot;display:none;&quot; class=&quot;undo un'+s+'&quot;&gt;'+note+&quot;&lt;/div&gt;&quot;)}p.before(u);a(&quot;strong&quot;,&quot;#undo-&quot;+o).text(t+&quot; &quot;);w=a(&quot;.undo a&quot;,&quot;#undo-&quot;+o);w.attr(&quot;href&quot;,&quot;comment.php?action=un&quot;+s+&quot;comment&amp;c=&quot;+o+&quot;&amp;_wpnonce=&quot;+r.data._ajax_nonce);w.attr(&quot;className&quot;,&quot;delete:the-comment-list:comment-&quot;+o+&quot;::un&quot;+s+&quot;=1 vim-z vim-destructive&quot;);a(&quot;.avatar&quot;,p).clone().prependTo(&quot;#undo-&quot;+o+&quot; .&quot;+s+&quot;-undo-inside&quot;);w.click(function(){v.wpList.del(this);a(&quot;#undo-&quot;+o).css({backgroundColor:&quot;#ceb&quot;}).fadeOut(350,function(){a(this).remove();a(&quot;#comment-&quot;+o).css(&quot;backgroundColor&quot;,&quot;&quot;).fadeIn(300,function(){a(this).show()})});return false})}return r};e=function(n,o,p){if(o&lt;m){return}if(p){m=o}d.val(n.toString());a(&quot;span.total-type-count&quot;).each(function(){g(a(this),n)})};function k(t){var s=a(&quot;#dashboard_right_now&quot;),p,r,q,o;t=t||0;if(isNaN(t)||!s.length){return}p=a(&quot;span.total-count&quot;,s);r=a(&quot;span.approved-count&quot;,s);q=c(p);q=q+t;o=q-c(a(&quot;span.pending-count&quot;,s))-c(a(&quot;span.spam-count&quot;,s));g(p,q);g(r,o)}function c(o){var p=parseInt(o.html().replace(/[^0-9]+/g,&quot;&quot;),10);if(isNaN(p)){return 0}return p}function g(p,q){var o=&quot;&quot;;if(isNaN(q)){return}q=q&lt;1?&quot;0&quot;:q.toString();if(q.length&gt;3){while(q.length&gt;3){o=thousandsSeparator+q.substr(q.length-3)+o;q=q.substr(0,q.length-3)}q=q+o}p.html(q)}l=function(n,p){var u,q,s,w=a(p.target).parent().is(&quot;span.untrash&quot;),o=a(p.target).parent().is(&quot;span.unspam&quot;),v,t;function x(r){if(a(p.target).parent().is(&quot;span.&quot;+r)){return 1}else{if(a(&quot;#&quot;+p.element).is(&quot;.&quot;+r)){return -1}}return 0}v=x(&quot;spam&quot;);t=x(&quot;trash&quot;);if(w){t=-1}if(o){v=-1}a(&quot;span.pending-count&quot;).each(function(){var r=a(this),z=c(r),y=a(&quot;#&quot;+p.element).is(&quot;.unapproved&quot;);if(a(p.target).parent().is(&quot;span.unapprove&quot;)||((w||o)&amp;&amp;y)){z=z+1}else{if(y){z=z-1}}if(z&lt;0){z=0}r.closest(&quot;#awaiting-mod&quot;)[0==z?&quot;addClass&quot;:&quot;removeClass&quot;](&quot;count-0&quot;);g(r,z);k()});a(&quot;span.spam-count&quot;).each(function(){var r=a(this),y=c(r)+v;g(r,y)});a(&quot;span.trash-count&quot;).each(function(){var r=a(this),y=c(r)+t;g(r,y)});if(a(&quot;#dashboard_right_now&quot;).length){s=t?-1*t:0;k(s)}else{u=d.val()?parseInt(d.val(),10):0;u=u-v-t;if(u&lt;0){u=0}if((&quot;object&quot;==typeof n)&amp;&amp;m&lt;p.parsed.responses[0].supplemental.time){total_items_i18n=p.parsed.responses[0].supplemental.total_items_i18n||&quot;&quot;;if(total_items_i18n){a(&quot;.displaying-num&quot;).text(total_items_i18n);a(&quot;.total-pages&quot;).text(p.parsed.responses[0].supplemental.total_pages_i18n);a(&quot;.tablenav-pages&quot;).find(&quot;.next-page, .last-page&quot;).toggleClass(&quot;disabled&quot;,p.parsed.responses[0].supplemental.total_pages==a(&quot;.current-page&quot;).val())}e(u,p.parsed.responses[0].supplemental.time,true)}else{e(u,n,false)}}if(!theExtraList||theExtraList.size()==0||theExtraList.children().size()==0||w||o){return}theList.get(0).wpList.add(theExtraList.children(&quot;:eq(0)&quot;).remove().clone());b()};var b=function(s){var o=a.query.get(),n=a(&quot;.total-pages&quot;).text(),p=a(&quot;input[name=_per_page]&quot;,&quot;#comments-form&quot;).val(),q;if(!o.paged){o.paged=1}if(o.paged&gt;n){return}if(s){theExtraList.empty();o.number=Math.min(8,p)}else{o.number=1;o.offset=Math.min(8,p)-1}o.no_placeholder=true;o.paged++;if(true===o.comment_type){o.comment_type=&quot;&quot;}o=a.extend(o,{action:&quot;fetch-list&quot;,list_args:list_args,_ajax_fetch_list_nonce:a(&quot;#_ajax_fetch_list_nonce&quot;).val()});a.ajax({url:ajaxurl,global:false,dataType:&quot;json&quot;,data:o,success:function(r){theExtraList.get(0).wpList.add(r.rows)}})};theExtraList=a(&quot;#the-extra-comment-list&quot;).wpList({alt:&quot;&quot;,delColor:&quot;none&quot;,addColor:&quot;none&quot;});theList=a(&quot;#the-comment-list&quot;).wpList({alt:&quot;&quot;,delBefore:j,dimAfter:h,delAfter:l,addColor:&quot;none&quot;}).bind(&quot;wpListDelEnd&quot;,function(o,n){var p=n.element.replace(/[^0-9]+/g,&quot;&quot;);if(n.target.className.indexOf(&quot;:trash=1&quot;)!=-1||n.target.className.indexOf(&quot;:spam=1&quot;)!=-1){a(&quot;#undo-&quot;+p).fadeIn(300,function(){a(this).show()})}})};commentReply={cid:&quot;&quot;,act:&quot;&quot;,init:function(){var b=a(&quot;#replyrow&quot;);a(&quot;a.cancel&quot;,b).click(function(){return commentReply.revert()});a(&quot;a.save&quot;,b).click(function(){return commentReply.send()});a(&quot;input#author, input#author-email, input#author-url&quot;,b).keypress(function(c){if(c.which==13){commentReply.send();c.preventDefault();return false}});a(&quot;#the-comment-list .column-comment &gt; p&quot;).dblclick(function(){commentReply.toggle(a(this).parent())});a(&quot;#doaction, #doaction2, #post-query-submit&quot;).click(function(c){if(a(&quot;#the-comment-list #replyrow&quot;).length&gt;0){commentReply.close()}});this.comments_listing=a('#comments-form &gt; input[name=&quot;comment_status&quot;]').val()||&quot;&quot;},addEvents:function(b){b.each(function(){a(this).find(&quot;.column-comment &gt; p&quot;).dblclick(function(){commentReply.toggle(a(this).parent())})})},toggle:function(b){if(a(b).css(&quot;display&quot;)!=&quot;none&quot;){a(b).find(&quot;a.vim-q&quot;).click()}},revert:function(){if(a(&quot;#the-comment-list #replyrow&quot;).length&lt;1){return false}a(&quot;#replyrow&quot;).fadeOut(&quot;fast&quot;,function(){commentReply.close()});return false},close:function(){var b;if(this.cid){b=a(&quot;#comment-&quot;+this.cid);if(this.act==&quot;edit-comment&quot;){b.fadeIn(300,function(){b.show()}).css(&quot;backgroundColor&quot;,&quot;&quot;)}a(&quot;#replyrow&quot;).hide();a(&quot;#com-reply&quot;).append(a(&quot;#replyrow&quot;));a(&quot;#replycontent&quot;).val(&quot;&quot;);a(&quot;input&quot;,&quot;#edithead&quot;).val(&quot;&quot;);a(&quot;.error&quot;,&quot;#replysubmit&quot;).html(&quot;&quot;).hide();a(&quot;.waiting&quot;,&quot;#replysubmit&quot;).hide();if(a.browser.msie){a(&quot;#replycontainer, #replycontent&quot;).css(&quot;height&quot;,&quot;120px&quot;)}else{a(&quot;#replycontainer&quot;).resizable(&quot;destroy&quot;).css(&quot;height&quot;,&quot;120px&quot;)}this.cid=&quot;&quot;}},open:function(b,d,k){var l=this,e,f,i,g,j=a(&quot;#comment-&quot;+b);l.close();l.cid=b;e=a(&quot;#replyrow&quot;);f=a(&quot;#inline-&quot;+b);i=l.act=(k==&quot;edit&quot;)?&quot;edit-comment&quot;:&quot;replyto-comment&quot;;a(&quot;#action&quot;,e).val(i);a(&quot;#comment_post_ID&quot;,e).val(d);a(&quot;#comment_ID&quot;,e).val(b);if(k==&quot;edit&quot;){a(&quot;#author&quot;,e).val(a(&quot;div.author&quot;,f).text());a(&quot;#author-email&quot;,e).val(a(&quot;div.author-email&quot;,f).text());a(&quot;#author-url&quot;,e).val(a(&quot;div.author-url&quot;,f).text());a(&quot;#status&quot;,e).val(a(&quot;div.comment_status&quot;,f).text());a(&quot;#replycontent&quot;,e).val(a(&quot;textarea.comment&quot;,f).val());a(&quot;#edithead, #savebtn&quot;,e).show();a(&quot;#replyhead, #replybtn&quot;,e).hide();g=j.height();if(g&gt;220){if(a.browser.msie){a(&quot;#replycontainer, #replycontent&quot;,e).height(g-105)}else{a(&quot;#replycontainer&quot;,e).height(g-105)}}j.after(e).fadeOut(&quot;fast&quot;,function(){a(&quot;#replyrow&quot;).fadeIn(300,function(){a(this).show()})})}else{a(&quot;#edithead, #savebtn&quot;,e).hide();a(&quot;#replyhead, #replybtn&quot;,e).show();j.after(e);a(&quot;#replyrow&quot;).fadeIn(300,function(){a(this).show()})}if(!a.browser.msie){a(&quot;#replycontainer&quot;).resizable({handles:&quot;s&quot;,axis:&quot;y&quot;,minHeight:80,stop:function(){a(&quot;#replycontainer&quot;).width(&quot;auto&quot;)}})}setTimeout(function(){var n,h,o,c,m;n=a(&quot;#replyrow&quot;).offset().top;h=n+a(&quot;#replyrow&quot;).height();o=window.pageYOffset||document.documentElement.scrollTop;c=document.documentElement.clientHeight||self.innerHeight||0;m=o+c;if(m-20&lt;h){window.scroll(0,h-c+35)}else{if(n-20&lt;o){window.scroll(0,n-35)}}a(&quot;#replycontent&quot;).focus().keyup(function(p){if(p.which==27){commentReply.revert()}})},600);return false},send:function(){var b={};a(&quot;#replysubmit .error&quot;).hide();a(&quot;#replysubmit .waiting&quot;).show();a(&quot;#replyrow input&quot;).each(function(){b[a(this).attr(&quot;name&quot;)]=a(this).val()});b.content=a(&quot;#replycontent&quot;).val();b.id=b.comment_post_ID;b.comments_listing=this.comments_listing;b.p=a(&quot;[name=p]&quot;).val();a.ajax({type:&quot;POST&quot;,url:ajaxurl,data:b,success:function(c){commentReply.show(c)},error:function(c){commentReply.error(c)}});return false},show:function(b){var e,g,f,d;if(typeof(b)==&quot;string&quot;){this.error({responseText:b});return false}e=wpAjax.parseAjaxResponse(b);if(e.errors){this.error({responseText:wpAjax.broken});return false}e=e.responses[0];g=e.data;f=&quot;#comment-&quot;+e.id;if(&quot;edit-comment&quot;==this.act){a(f).remove()}a(g).hide();a(&quot;#replyrow&quot;).after(g);this.revert();this.addEvents(a(f));d=a(f).hasClass(&quot;unapproved&quot;)?&quot;#ffffe0&quot;:&quot;#fff&quot;;a(f).animate({backgroundColor:&quot;#CCEEBB&quot;},600).animate({backgroundColor:d},600)},error:function(b){var c=b.statusText;a(&quot;#replysubmit .waiting&quot;).hide();if(b.responseText){c=b.responseText.replace(/&lt;.[^&lt;&gt;]*?&gt;/g,&quot;&quot;)}if(c){a(&quot;#replysubmit .error&quot;).html(c).show()}}};a(document).ready(function(){var e,b,c,d;setCommentsList();commentReply.init();a(document).delegate(&quot;span.delete a.delete&quot;,&quot;click&quot;,function(){return false});if(typeof QTags!=&quot;undefined&quot;){ed_reply=new QTags(&quot;ed_reply&quot;,&quot;replycontent&quot;,&quot;replycontainer&quot;,&quot;more&quot;)}if(typeof a.table_hotkeys!=&quot;undefined&quot;){e=function(f){return function(){var h,g;h=&quot;next&quot;==f?&quot;first&quot;:&quot;last&quot;;g=a(&quot;.tablenav-pages .&quot;+f+&quot;-page:not(.disabled)&quot;);if(g.length){window.location=g[0].href.replace(/\&amp;hotkeys_highlight_(first|last)=1/g,&quot;&quot;)+&quot;&amp;hotkeys_highlight_&quot;+h+&quot;=1&quot;}}};b=function(g,f){window.location=a(&quot;span.edit a&quot;,f).attr(&quot;href&quot;)};c=function(){toggleWithKeyboard=true;a(&quot;input:checkbox&quot;,&quot;#cb&quot;).click().attr(&quot;checked&quot;,&quot;&quot;);toggleWithKeyboard=false};d=function(f){return function(){var g=a('select[name=&quot;action&quot;]');a(&quot;option[value=&quot;+f+&quot;]&quot;,g).attr(&quot;selected&quot;,&quot;selected&quot;);a(&quot;#doaction&quot;).click()}};a.table_hotkeys(a(&quot;table.widefat&quot;),[&quot;a&quot;,&quot;u&quot;,&quot;s&quot;,&quot;d&quot;,&quot;r&quot;,&quot;q&quot;,&quot;z&quot;,[&quot;e&quot;,b],[&quot;shift+x&quot;,c],[&quot;shift+a&quot;,d(&quot;approve&quot;)],[&quot;shift+s&quot;,d(&quot;spam&quot;)],[&quot;shift+d&quot;,d(&quot;delete&quot;)],[&quot;shift+t&quot;,d(&quot;trash&quot;)],[&quot;shift+z&quot;,d(&quot;untrash&quot;)],[&quot;shift+u&quot;,d(&quot;unapprove&quot;)]],{highlight_first:adminCommentsL10n.hotkeys_highlight_first,highlight_last:adminCommentsL10n.hotkeys_highlight_last,prev_page_link_cb:e(&quot;prev&quot;),next_page_link_cb:e(&quot;next&quot;)})}})})(jQuery);
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkwpincludesscriptloaderphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/script-loader.php (17353 => 17354)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/script-loader.php        2011-01-22 18:36:54 UTC (rev 17353)
+++ trunk/wp-includes/script-loader.php        2011-01-22 18:47:42 UTC (rev 17354)
</span><span class="lines">@@ -299,7 +299,7 @@
</span><span class="cx">                 $scripts-&gt;add( 'admin-custom-fields', &quot;/wp-admin/js/custom-fields$suffix.js&quot;, array('wp-lists'), '20090106' );
</span><span class="cx">                 $scripts-&gt;add_data( 'admin-custom-fields', 'group', 1 );
</span><span class="cx"> 
</span><del>-                $scripts-&gt;add( 'admin-comments', &quot;/wp-admin/js/edit-comments$suffix.js&quot;, array('wp-lists', 'jquery-ui-resizable', 'quicktags', 'jquery-query'), '20110121b' );
</del><ins>+                $scripts-&gt;add( 'admin-comments', &quot;/wp-admin/js/edit-comments$suffix.js&quot;, array('wp-lists', 'jquery-ui-resizable', 'quicktags', 'jquery-query'), '20110122' );
</ins><span class="cx">                 $scripts-&gt;add_data( 'admin-comments', 'group', 1 );
</span><span class="cx">                 $scripts-&gt;localize( 'admin-comments', 'adminCommentsL10n', array(
</span><span class="cx">                         'hotkeys_highlight_first' =&gt; isset($_GET['hotkeys_highlight_first']),
</span></span></pre>
</div>
</div>

</body>
</html>